diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-21 06:55:46 +0100 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-21 06:55:46 +0100 |
| commit | 77affb6d5564f691ea337a3971fdc85f2460ed92 (patch) | |
| tree | 616fa9d799bce32c2e068cfd3a3b9c7d4736e5cb | |
| parent | 7f5576ded6e14724202b8bb25861f272341b0dd6 (diff) | |
Make untracked folder
189 files changed, 10198 insertions, 0 deletions
diff --git a/Untracked/Doxyfile b/Untracked/Doxyfile new file mode 100644 index 0000000..4074f43 --- /dev/null +++ b/Untracked/Doxyfile @@ -0,0 +1,1787 @@ +# Doxyfile 1.8.1.2 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = forgetIt + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = ./Doxygen/ + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command <command> <input-file>, where <command> is the value of +# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = . + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = ./bin \ + ./Doxygen \ + ./obj \ + ./*.layout \ + ./*.depend + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command <filter> <input-file>, where <filter> +# is the value of the INPUT_FILTER tag, and <input-file> is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C, C++ and Fortran comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of +# entries shown in the various tree structured indices initially; the user +# can expand and collapse entries dynamically later on. Doxygen will expand +# the tree to such a level that at most the specified number of entries are +# visible (unless a fully collapsed tree already exceeds this amount). +# So setting the number of entries 1 will produce a full collapsed tree by +# default. 0 is a special value representing an infinite number of entries +# and will result in a full expanded tree by default. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> +# Qt Help Project / Custom Filters</a>. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> +# Qt Help Project / Filter Attributes</a>. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/Untracked/Doxygen/CryptClass/AESCrypt.cpp b/Untracked/Doxygen/CryptClass/AESCrypt.cpp new file mode 100644 index 0000000..002cb60 --- /dev/null +++ b/Untracked/Doxygen/CryptClass/AESCrypt.cpp @@ -0,0 +1,110 @@ +/** + * @file AESCrypt.cpp + * @brief AESCrypt class definitions + * @author manzerbredes + * @date 8 Mars 2015 + * + * Contain all definitions of AESCrypt class. + * + */ + +#include "AESCrypt.hpp" + +//Constructor +AESCrypt::AESCrypt(){ + this->hash=HASHCrypt(); //Init hash attribute +} + +//Destructor +AESCrypt::~AESCrypt(){ +} + + +//Encrypt string +std::string AESCrypt::encrypt(std::string key, std::string data){ + + //Generate SHA-256 + byte digest[32]; + hash.getSHA_256(key, digest, (int)sizeof(digest)); + + + + + //Add padding for AES + int pad=0; + int tmpL=data.length(); + while(tmpL % 128 != 0){ + tmpL++; + pad++; + + } + std::cout <<pad; + while(data.length() % 128 != 0){ + data+=pad; + } + + + //Contain data encrypted + std::string cipher; + + //Use try, catch to be ensure no problems happening + try{ + //Create encoder to encrypt data + CryptoPP::ECB_Mode<CryptoPP::AES>::Encryption encoder; + encoder.SetKey( digest, sizeof(digest) ); + + //Encrypt data with StreamTransformationFilter with NO PADDING + CryptoPP::StringSource ss1(data, true, + new CryptoPP::StreamTransformationFilter( encoder, + new CryptoPP::StringSink( cipher ), + CryptoPP::StreamTransformationFilter::PKCS_PADDING + + ) + ); + } + catch( CryptoPP::Exception& e ) + { + std::cerr << e.what() << std::endl; + exit(EXIT_FAILURE); + } + + //return encrypted data + return cipher; + +} + +//Decrypt string +std::string AESCrypt::decrypt(std::string key, std::string data){ + + + byte digest[32]; + hash.getSHA_256(key, digest, (int)sizeof(digest)); + + + //Contain data decrypted + std::string cipher; + + //Use try, catch to be ensure no problems happening + try { + + //Create decoder to encrypt data + CryptoPP::ECB_Mode< CryptoPP::AES >::Decryption decoder; + decoder.SetKey( digest, sizeof(digest) ); + + //Decrypt data with StreamTransformationFilter with NO PADDING + CryptoPP::StringSource ss3( data, true, + new CryptoPP::StreamTransformationFilter( decoder, + new CryptoPP::StringSink( cipher ), + CryptoPP::StreamTransformationFilter::PKCS_PADDING + ) + ); + } + catch( CryptoPP::Exception& e ) + { + std::cerr << e.what() << std::endl; + exit(1); + } + + //return decrypted data + return cipher; +} diff --git a/Untracked/Doxygen/CryptClass/AESCrypt.hpp b/Untracked/Doxygen/CryptClass/AESCrypt.hpp new file mode 100644 index 0000000..a8fa976 --- /dev/null +++ b/Untracked/Doxygen/CryptClass/AESCrypt.hpp @@ -0,0 +1,71 @@ +/** + * @file AESCrypt.hpp + * @brief AESCrypt class header + * @author manzerbredes + * @date 8 Mars 2015 + * + * Contain all prototypes of AESCrypt class. + * + */ + +//----- std ----- +#include "AbstractSKA.hpp" +#include "HASHCrypt.hpp" +#include <iostream> + +//----- crypto++ ----- +#include <crypto++/aes.h> +#include <crypto++/modes.h> +#include <crypto++/filters.h> + + +/** + * @class AESCrypt AESCrypt.hpp "/CryptClass/AESCrypt.hpp" + * @brief Class for Advanced Encryption Standard (AES) algorithm + * @author manzerbredes + * + * This class provide AES encrypt and decrypt. + * + */ + +class AESCrypt : public AbstractSKA { + + + public: + AESCrypt(); + ~AESCrypt(); + + + /** + * @brief Encrypt data with AES algorithm. + * + * @param key : key to encrypt data + * @param data : contain data to encrypt. + * + * @return string : correspond to crypted data + * + * Encrypt data, and return them in a string. + * Padding are blank space. + * + */ + virtual std::string encrypt(std::string key, std::string data); + + /** + * @brief Decrypt data from AES algorithm. + * + * @param key : key used to encrypt data + * @param data : contain data to decrypt from AES encrypt. + * + * @return string : correspond to decrypted data + * + * Decrypt data, and return them in a string. + * Padding is not removed. + * + */ + virtual std::string decrypt(std::string key, std::string data); + + private: + HASHCrypt hash; ///< hash instance to generate SHA-256 hash code. + + +}; diff --git a/Untracked/Doxygen/CryptClass/AbstractSKA.hpp b/Untracked/Doxygen/CryptClass/AbstractSKA.hpp new file mode 100644 index 0000000..de03b1b --- /dev/null +++ b/Untracked/Doxygen/CryptClass/AbstractSKA.hpp @@ -0,0 +1,54 @@ +/** + * @file AbstractSKA.hpp + * @brief Class for Symmetric-Key Algorithm (SKA) + * @author manzerbredes + * @date 8 Mars 2015 + * + * Specify which method the algorithm must be implement. + * + */ + +#include <string> + + +/** + * @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp" + * @brief Class for Symmetric-Key Algorithm (SKA) + * @author manzerbredes + * + * This class should not be instanciate directly. + * + */ + +class AbstractSKA { + + public: + AbstractSKA(){ + } + ~AbstractSKA(){ + } + + /** + * @brief Encrypt data. + * + * @param key : key used to encrypt data + * @param data : contain data to encrypt. + * + * This method must be overwritten. + * **Warning** data will be modified. + * + */ + virtual std::string encrypt(std::string key, std::string data) = 0; + + /** + * @brief Decrypt data. + * + * @param key : key used to decrypt data + * @param data : contain data to decrypt. + * + * This method must be overwritten. + * **Warning** data will be modified. + * + */ + virtual std::string decrypt(std::string key, std::string data) = 0; +}; diff --git a/Untracked/Doxygen/CryptClass/HASHCrypt.cpp b/Untracked/Doxygen/CryptClass/HASHCrypt.cpp new file mode 100644 index 0000000..8822226 --- /dev/null +++ b/Untracked/Doxygen/CryptClass/HASHCrypt.cpp @@ -0,0 +1,70 @@ +/** + * @file HASHCrypt.cpp + * @brief HASHCrypt class definitions + * @author manzerbredes + * @date 8 Mars 2015 + * + * Contain all definitions of HASHCrypt class. + * + */ + + +#include "HASHCrypt.hpp" + + +//Constructor +HASHCrypt::HASHCrypt(){ +} + +//Destructor +HASHCrypt::~HASHCrypt(){ +} + + + +void HASHCrypt::getMD5_128(std::string chain, byte* digest, int size){ + + //Digest size controller + this->checkDigestSize(CryptoPP::Weak1::MD5::DIGESTSIZE,size); + + //Create the MD5 on digest parameter + CryptoPP::Weak1::MD5 hash; + hash.CalculateDigest( digest, (byte*) chain.c_str(), chain.length() ); + +} + + +void HASHCrypt::getSHA_256(std::string chain, byte* digest, int size){ + + //Digest size controller + this->checkDigestSize(CryptoPP::SHA256::DIGESTSIZE,size); + + //Create the SHA-256 on digest parameter + CryptoPP::SHA256 hash; + hash.CalculateDigest( digest, (byte*) chain.c_str(), chain.length() ); + + +} + + + +void HASHCrypt::checkDigestSize(int sizeRequired, int size){ + try{ + if(size !=sizeRequired){ + throw this->getInvalidDigestSizeError(sizeRequired, size); + } + + } + catch(std::string erreur){ + std::cerr << erreur <<std::endl; + std::exit(EXIT_FAILURE); + } +} + + +std::string HASHCrypt::getInvalidDigestSizeError(int sizeRequired, int size){ + std::ostringstream erreurStream; + erreurStream << "Invalid digest size ! ("<< sizeRequired <<" bytes required and "<< size <<" given)"; + return erreurStream.str(); +} + diff --git a/Untracked/Doxygen/CryptClass/HASHCrypt.hpp b/Untracked/Doxygen/CryptClass/HASHCrypt.hpp new file mode 100644 index 0000000..22e0c4f --- /dev/null +++ b/Untracked/Doxygen/CryptClass/HASHCrypt.hpp @@ -0,0 +1,99 @@ +/** + * @file HASHCrypt.hpp + * @brief HASHCrypt class header + * @author manzerbredes + * @date 8 Mars 2015 + * + * Contain all prototypes of HASHCrypt class. + * + */ + + +//----- std ----- +#include <iostream> +#include <string> +#include <sstream> + +//----- crypto++ ----- +#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1 +#include <crypto++/md5.h> //For MD5 +#include <crypto++/hex.h> //For Hex convertion +#include <crypto++/sha.h> //For SHA +#include <crypto++/modes.h> + + +/** + * @class HASHCrypt HASHCrypt.hpp "/CryptClass/HASHCrypt.hpp" + * @brief Hashing class + * @author manzerbredes + * + * Class who handle hashing functions to a byte* parameter. + * HASHCrypt try to detect errors and throw exceptions. + * HASHCrypt use crypto++ library. + */ +class HASHCrypt{ + + public: + /** + * @brief Contructor + */ + HASHCrypt(); + + /** + * @brief Destructor + */ + ~HASHCrypt(); + + /** + * @brief Create an MD5 over 128 bits on a digest array of bytes. + * + * @param chain : Chain to hash + * @param digest : An array of bytes (8 bits) + * @param size : Length of the array digest + * + * **Warning** digest will be modified. + * Digest must be an array of byte with 16 entries + */ + void getMD5_128(std::string chain, byte* digest, int size); + + /** + * @brief Create an SHA over 256 bits on a digest array of bytes. + * + * @param chain : Chain to hash + * @param digest : An array of bytes (8 bits) + * @param size : Length of the array digest + * + * **Warning** digest will be modified. + * Digest must be an array of byte with 32 entries + */ + void getSHA_256(std::string chain, byte* digest, int size); //Retourne SHA_256 + + private: + + /** + * @brief Check the digest size + * + * @param sizeRequired : Digest size expected + * @param size : Given digest size + * + * Throw an exception, and stop the programm if + * sizeRequired != size + * Use getInvalidDigestSizeError method. + */ + void checkDigestSize(int sizeRequired, int size); + + /** + * @brief Make and error message. + * + * @param sizeRequired : Digest size expected + * @param size : Given digest size + * + * @return a string correspond to the error message + * + * Construct an error message with sizeRequired and size. + */ + std::string getInvalidDigestSizeError(int sizeRequired, int size); + + + +}; diff --git a/Untracked/Doxygen/bob.bin b/Untracked/Doxygen/bob.bin Binary files differnew file mode 100644 index 0000000..d44cfb8 --- /dev/null +++ b/Untracked/Doxygen/bob.bin diff --git a/Untracked/Doxygen/bob2.bin b/Untracked/Doxygen/bob2.bin new file mode 100644 index 0000000..bfc3815 --- /dev/null +++ b/Untracked/Doxygen/bob2.bin @@ -0,0 +1 @@ +ŒK©-«‡
aF(ãö=i —Mp=“–Â$ïðx3
\ No newline at end of file diff --git a/Untracked/Doxygen/doc.xml b/Untracked/Doxygen/doc.xml new file mode 100644 index 0000000..e20bf6a --- /dev/null +++ b/Untracked/Doxygen/doc.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" standalone="yes" ?> + + + +<forgetIt> + + <websites> + <website id="1"> + <title><![CDATA[Titre]]></title> + <url><![CDATA[http://www.google.fr]]></url> + <username><![CDATA[bob]]></username> + <password><![CDATA[monmdp]]></password> + <description><![CDATA[Le site de google.]]></description> + </website> + <website id="2"> + <title><![CDATA[Titre 2]]></title> + <url><![CDATA[http://www.youtube.fr]]></url> + <username><![CDATA[jean]]></username> + <password><![CDATA[jeanmdp]]></password> + <description><![CDATA[Le site de youtube<lkjlj></lkjlj>.]]></description> + </website> + </websites> + + + +</forgetIt> diff --git a/Untracked/Doxygen/html/AESCrypt_8hpp_source.html b/Untracked/Doxygen/html/AESCrypt_8hpp_source.html new file mode 100644 index 0000000..4a4a156 --- /dev/null +++ b/Untracked/Doxygen/html/AESCrypt_8hpp_source.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: CryptClass/AESCrypt.hpp Source File</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div id="nav-path" class="navpath"> + <ul> +<li class="navelem"><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html">CryptClass</a></li> </ul> +</div> +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">AESCrypt.hpp</div> </div> +</div><!--header--> +<div class="contents"> +<div class="fragment"></div><!-- fragment --></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/HASHCrypt_8cpp.html b/Untracked/Doxygen/html/HASHCrypt_8cpp.html new file mode 100644 index 0000000..6c0bb26 --- /dev/null +++ b/Untracked/Doxygen/html/HASHCrypt_8cpp.html @@ -0,0 +1,107 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: CryptClass/HASHCrypt.cpp File Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div id="nav-path" class="navpath"> + <ul> +<li class="navelem"><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html">CryptClass</a></li> </ul> +</div> +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">HASHCrypt.cpp File Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class definitions. +<a href="#details">More...</a></p> +<div class="textblock"><code>#include "<a class="el" href="HASHCrypt_8hpp_source.html">HASHCrypt.hpp</a>"</code><br/> +</div><a name="details" id="details"></a><h2>Detailed Description</h2> +<div class="textblock"><p><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class definitions. </p> +<dl class="section author"><dt>Author</dt><dd>manzerbredes </dd></dl> +<dl class="section date"><dt>Date</dt><dd>8 Mars 2015</dd></dl> +<p>Contain all definitions of <a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class. </p> +</div></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/HASHCrypt_8hpp.html b/Untracked/Doxygen/html/HASHCrypt_8hpp.html new file mode 100644 index 0000000..4e63c0f --- /dev/null +++ b/Untracked/Doxygen/html/HASHCrypt_8hpp.html @@ -0,0 +1,122 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: CryptClass/HASHCrypt.hpp File Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div id="nav-path" class="navpath"> + <ul> +<li class="navelem"><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html">CryptClass</a></li> </ul> +</div> +</div><!-- top --> +<div class="header"> + <div class="summary"> +<a href="#nested-classes">Classes</a> </div> + <div class="headertitle"> +<div class="title">HASHCrypt.hpp File Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class header. +<a href="#details">More...</a></p> +<div class="textblock"><code>#include <iostream></code><br/> +<code>#include <string></code><br/> +<code>#include <sstream></code><br/> +<code>#include <crypto++/md5.h></code><br/> +<code>#include <crypto++/hex.h></code><br/> +<code>#include <crypto++/sha.h></code><br/> +</div> +<p><a href="HASHCrypt_8hpp_source.html">Go to the source code of this file.</a></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2><a name="nested-classes"></a> +Classes</h2></td></tr> +<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classHASHCrypt.html">HASHCrypt</a></td></tr> +<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Hashing class. <a href="classHASHCrypt.html#details">More...</a><br/></td></tr> +</table> +<a name="details" id="details"></a><h2>Detailed Description</h2> +<div class="textblock"><p><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class header. </p> +<dl class="section author"><dt>Author</dt><dd>manzerbredes </dd></dl> +<dl class="section date"><dt>Date</dt><dd>8 Mars 2015</dd></dl> +<p>Contain all prototypes of <a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class. </p> +</div></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/HASHCrypt_8hpp_source.html b/Untracked/Doxygen/html/HASHCrypt_8hpp_source.html new file mode 100644 index 0000000..e88dc68 --- /dev/null +++ b/Untracked/Doxygen/html/HASHCrypt_8hpp_source.html @@ -0,0 +1,132 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: CryptClass/HASHCrypt.hpp Source File</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div id="nav-path" class="navpath"> + <ul> +<li class="navelem"><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html">CryptClass</a></li> </ul> +</div> +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">HASHCrypt.hpp</div> </div> +</div><!--header--> +<div class="contents"> +<a href="HASHCrypt_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> </div> +<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment">//----- std -----</span></div> +<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="preprocessor">#include <iostream></span></div> +<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="preprocessor">#include <string></span></div> +<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="preprocessor">#include <sstream></span></div> +<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> </div> +<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment">//----- crypto++ -----</span></div> +<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="preprocessor">#include <crypto++/md5.h></span> <span class="comment">//For MD5</span></div> +<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="preprocessor">#include <crypto++/hex.h></span> <span class="comment">//For Hex convertion</span></div> +<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="preprocessor">#include <crypto++/sha.h></span> <span class="comment">//For SHA</span></div> +<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> </div> +<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> </div> +<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> </div> +<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> </div> +<div class="line"><a name="l00034"></a><span class="lineno"><a class="code" href="classHASHCrypt.html"> 34</a></span> <span class="keyword">class </span><a class="code" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a>{</div> +<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> </div> +<div class="line"><a name="l00036"></a><span class="lineno"> 36</span>  <span class="keyword">public</span>:</div> +<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>  <a class="code" href="classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1" title="Contructor.">HASHCrypt</a>();</div> +<div class="line"><a name="l00041"></a><span class="lineno"> 41</span> </div> +<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>  <a class="code" href="classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd" title="Destructor.">~HASHCrypt</a>();</div> +<div class="line"><a name="l00046"></a><span class="lineno"> 46</span> </div> +<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  <span class="keywordtype">void</span> <a class="code" href="classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0" title="Create an MD5 over 128 bits on a digest array of bytes.">getMD5_128</a>(std::string chain, byte* digest, <span class="keywordtype">int</span> size);</div> +<div class="line"><a name="l00057"></a><span class="lineno"> 57</span> </div> +<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>  <span class="keywordtype">void</span> <a class="code" href="classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc" title="Create an SHA over 256 bits on a digest array of bytes.">getSHA_256</a>(std::string chain, byte* digest, <span class="keywordtype">int</span> size); <span class="comment">//Retourne SHA_256</span></div> +<div class="line"><a name="l00068"></a><span class="lineno"> 68</span> </div> +<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>  <span class="keyword">private</span>:</div> +<div class="line"><a name="l00070"></a><span class="lineno"> 70</span> </div> +<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>  <span class="keywordtype">void</span> checkDigestSize(<span class="keywordtype">int</span> sizeRequired, <span class="keywordtype">int</span> size);</div> +<div class="line"><a name="l00082"></a><span class="lineno"> 82</span> </div> +<div class="line"><a name="l00093"></a><span class="lineno"> 93</span>  std::string getInvalidDigestSizeError(<span class="keywordtype">int</span> sizeRequired, <span class="keywordtype">int</span> size);</div> +<div class="line"><a name="l00094"></a><span class="lineno"> 94</span> </div> +<div class="line"><a name="l00095"></a><span class="lineno"> 95</span> </div> +<div class="line"><a name="l00096"></a><span class="lineno"> 96</span> </div> +<div class="line"><a name="l00097"></a><span class="lineno"> 97</span> };</div> +</div><!-- fragment --></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/annotated.html b/Untracked/Doxygen/html/annotated.html new file mode 100644 index 0000000..8c46ecd --- /dev/null +++ b/Untracked/Doxygen/html/annotated.html @@ -0,0 +1,100 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Class List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li class="current"><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="classes.html"><span>Class Index</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Class List</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory"> +<table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2cl.png" alt="C" width="24" height="22" /><a class="el" href="classHASHCrypt.html" target="_self">HASHCrypt</a></td><td class="desc">Hashing class</td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/bc_s.png b/Untracked/Doxygen/html/bc_s.png Binary files differnew file mode 100644 index 0000000..25e3beb --- /dev/null +++ b/Untracked/Doxygen/html/bc_s.png diff --git a/Untracked/Doxygen/html/bdwn.png b/Untracked/Doxygen/html/bdwn.png Binary files differnew file mode 100644 index 0000000..940a0b9 --- /dev/null +++ b/Untracked/Doxygen/html/bdwn.png diff --git a/Untracked/Doxygen/html/classHASHCrypt-members.html b/Untracked/Doxygen/html/classHASHCrypt-members.html new file mode 100644 index 0000000..e875326 --- /dev/null +++ b/Untracked/Doxygen/html/classHASHCrypt-members.html @@ -0,0 +1,102 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Member List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="classes.html"><span>Class Index</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">HASHCrypt Member List</div> </div> +</div><!--header--> +<div class="contents"> + +<p>This is the complete list of members for <a class="el" href="classHASHCrypt.html">HASHCrypt</a>, including all inherited members.</p> +<table class="directory"> + <tr class="even"><td class="entry"><a class="el" href="classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0">getMD5_128</a>(std::string chain, byte *digest, int size)</td><td class="entry"><a class="el" href="classHASHCrypt.html">HASHCrypt</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc">getSHA_256</a>(std::string chain, byte *digest, int size)</td><td class="entry"><a class="el" href="classHASHCrypt.html">HASHCrypt</a></td><td class="entry"></td></tr> + <tr class="even"><td class="entry"><a class="el" href="classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1">HASHCrypt</a>()</td><td class="entry"><a class="el" href="classHASHCrypt.html">HASHCrypt</a></td><td class="entry"></td></tr> + <tr><td class="entry"><a class="el" href="classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd">~HASHCrypt</a>()</td><td class="entry"><a class="el" href="classHASHCrypt.html">HASHCrypt</a></td><td class="entry"></td></tr> +</table></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/classHASHCrypt.html b/Untracked/Doxygen/html/classHASHCrypt.html new file mode 100644 index 0000000..1b759d0 --- /dev/null +++ b/Untracked/Doxygen/html/classHASHCrypt.html @@ -0,0 +1,212 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: HASHCrypt Class Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="classes.html"><span>Class Index</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +</div><!-- top --> +<div class="header"> + <div class="summary"> +<a href="#pub-methods">Public Member Functions</a> | +<a href="classHASHCrypt-members.html">List of all members</a> </div> + <div class="headertitle"> +<div class="title">HASHCrypt Class Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Hashing class. + <a href="classHASHCrypt.html#details">More...</a></p> + +<p><code>#include "<a class="el" href="HASHCrypt_8hpp_source.html">/CryptClass/HASHCrypt.hpp</a>"</code></p> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2><a name="pub-methods"></a> +Public Member Functions</h2></td></tr> +<tr class="memitem:a1eeb2543bd9b49e5dd9d6f4d5939eca1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1eeb2543bd9b49e5dd9d6f4d5939eca1"></a> + </td><td class="memItemRight" valign="bottom"><a class="el" href="classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1">HASHCrypt</a> ()</td></tr> +<tr class="memdesc:a1eeb2543bd9b49e5dd9d6f4d5939eca1"><td class="mdescLeft"> </td><td class="mdescRight">Contructor. <br/></td></tr> +<tr class="memitem:a55205da17c4c8a9c00c408bbe3b054dd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a55205da17c4c8a9c00c408bbe3b054dd"></a> + </td><td class="memItemRight" valign="bottom"><a class="el" href="classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd">~HASHCrypt</a> ()</td></tr> +<tr class="memdesc:a55205da17c4c8a9c00c408bbe3b054dd"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <br/></td></tr> +<tr class="memitem:aa44ba778865df0025793506eff45e8f0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0">getMD5_128</a> (std::string chain, byte *digest, int size)</td></tr> +<tr class="memdesc:aa44ba778865df0025793506eff45e8f0"><td class="mdescLeft"> </td><td class="mdescRight">Create an MD5 over 128 bits on a digest array of bytes. <a href="#aa44ba778865df0025793506eff45e8f0"></a><br/></td></tr> +<tr class="memitem:aae74b6215ff20533b421e3bb61f561dc"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc">getSHA_256</a> (std::string chain, byte *digest, int size)</td></tr> +<tr class="memdesc:aae74b6215ff20533b421e3bb61f561dc"><td class="mdescLeft"> </td><td class="mdescRight">Create an SHA over 256 bits on a digest array of bytes. <a href="#aae74b6215ff20533b421e3bb61f561dc"></a><br/></td></tr> +</table> +<a name="details" id="details"></a><h2>Detailed Description</h2> +<div class="textblock"><p>Hashing class. </p> +<dl class="section author"><dt>Author</dt><dd>manzerbredes</dd></dl> +<p>Class who handle hashing functions to a byte* parameter. <a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> try to detect errors and throw exceptions. <a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> use crypto++ library. </p> +</div><h2>Member Function Documentation</h2> +<a class="anchor" id="aa44ba778865df0025793506eff45e8f0"></a> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void HASHCrypt::getMD5_128 </td> + <td>(</td> + <td class="paramtype">std::string </td> + <td class="paramname"><em>chain</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">byte * </td> + <td class="paramname"><em>digest</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>size</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> + +<p>Create an MD5 over 128 bits on a digest array of bytes. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">chain</td><td>: Chain to hash </td></tr> + <tr><td class="paramname">digest</td><td>: An array of bytes (8 bits) </td></tr> + <tr><td class="paramname">size</td><td>: Length of the array digest</td></tr> + </table> + </dd> +</dl> +<p><b>Warning</b> digest will be modified. </p> + +</div> +</div> +<a class="anchor" id="aae74b6215ff20533b421e3bb61f561dc"></a> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">void HASHCrypt::getSHA_256 </td> + <td>(</td> + <td class="paramtype">std::string </td> + <td class="paramname"><em>chain</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">byte * </td> + <td class="paramname"><em>digest</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">int </td> + <td class="paramname"><em>size</em> </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> + +<p>Create an SHA over 256 bits on a digest array of bytes. </p> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">chain</td><td>: Chain to hash </td></tr> + <tr><td class="paramname">digest</td><td>: An array of bytes (8 bits) </td></tr> + <tr><td class="paramname">size</td><td>: Length of the array digest</td></tr> + </table> + </dd> +</dl> +<p><b>Warning</b> digest will be modified. </p> + +</div> +</div> +<hr/>The documentation for this class was generated from the following files:<ul> +<li>CryptClass/<a class="el" href="HASHCrypt_8hpp_source.html">HASHCrypt.hpp</a></li> +<li>CryptClass/<a class="el" href="HASHCrypt_8cpp.html">HASHCrypt.cpp</a></li> +</ul> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/classes.html b/Untracked/Doxygen/html/classes.html new file mode 100644 index 0000000..0ac3149 --- /dev/null +++ b/Untracked/Doxygen/html/classes.html @@ -0,0 +1,104 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Class Index</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li class="current"><a href="classes.html"><span>Class Index</span></a></li> + <li><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Class Index</div> </div> +</div><!--header--> +<div class="contents"> +<div class="qindex"><a class="qindex" href="#letter_H">H</a></div> +<table style="margin: 10px; white-space: nowrap;" align="center" width="95%" border="0" cellspacing="0" cellpadding="0"> +<tr><td rowspan="2" valign="bottom"><a name="letter_H"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  H  </div></td></tr></table> +</td><td></td></tr> +<tr><td></td></tr> +<tr><td valign="top"><a class="el" href="classHASHCrypt.html">HASHCrypt</a>   </td><td></td></tr> +<tr><td></td><td></td></tr> +</table> +<div class="qindex"><a class="qindex" href="#letter_H">H</a></div> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/closed.png b/Untracked/Doxygen/html/closed.png Binary files differnew file mode 100644 index 0000000..98cc2c9 --- /dev/null +++ b/Untracked/Doxygen/html/closed.png diff --git a/Untracked/Doxygen/html/dir_79653c76f36ffb335e4d55f3872be1c3.html b/Untracked/Doxygen/html/dir_79653c76f36ffb335e4d55f3872be1c3.html new file mode 100644 index 0000000..666178e --- /dev/null +++ b/Untracked/Doxygen/html/dir_79653c76f36ffb335e4d55f3872be1c3.html @@ -0,0 +1,102 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: CryptClass/ Directory Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div id="nav-path" class="navpath"> + <ul> +<li class="navelem"><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html">CryptClass</a></li> </ul> +</div> +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">CryptClass Directory Reference</div> </div> +</div><!--header--> +<div class="contents"> +<table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2><a name="files"></a> +Files</h2></td></tr> +<tr class="memitem:AESCrypt_8cpp"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><b>AESCrypt.cpp</b></td></tr> +<tr class="memitem:AESCrypt_8hpp"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><b>AESCrypt.hpp</b> <a href="AESCrypt_8hpp_source.html">[code]</a></td></tr> +<tr class="memitem:HASHCrypt_8cpp"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="HASHCrypt_8cpp.html">HASHCrypt.cpp</a></td></tr> +<tr class="memdesc:HASHCrypt_8cpp"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class definitions. <br/></td></tr> +<tr class="memitem:HASHCrypt_8hpp"><td class="memItemLeft" align="right" valign="top">file  </td><td class="memItemRight" valign="bottom"><a class="el" href="HASHCrypt_8hpp.html">HASHCrypt.hpp</a> <a href="HASHCrypt_8hpp_source.html">[code]</a></td></tr> +<tr class="memdesc:HASHCrypt_8hpp"><td class="mdescLeft"> </td><td class="mdescRight"><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class header. <br/></td></tr> +</table> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/doxygen.css b/Untracked/Doxygen/html/doxygen.css new file mode 100644 index 0000000..0c559a0 --- /dev/null +++ b/Untracked/Doxygen/html/doxygen.css @@ -0,0 +1,1163 @@ +/* The standard CSS for doxygen */ + +body, table, div, p, dl { + font: 400 14px/19px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1 { + font-size: 150%; +} + +.title { + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2 { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3 { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd, p.starttd { + margin-top: 2px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #ffffff; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 4px; + margin: 4px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +div.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memItemLeft, .memItemRight, .memTemplParams { + border-bottom: 1px solid #DEE4F0; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: bold; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + border-top-left-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + -moz-border-radius-topleft: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; +} + + + +/* @end */ + +/* these are for tree view when not used as main index */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + width: 100%; + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + width: 100%; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +dl +{ + padding: 0 0 0 10px; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ +dl.section +{ + margin-left: 0px; + padding-left: 0px; +} + +dl.note +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00D000; +} + +dl.deprecated +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #505050; +} + +dl.todo +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00C0E0; +} + +dl.test +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #3030E0; +} + +dl.bug +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 20px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + diff --git a/Untracked/Doxygen/html/doxygen.png b/Untracked/Doxygen/html/doxygen.png Binary files differnew file mode 100644 index 0000000..3ff17d8 --- /dev/null +++ b/Untracked/Doxygen/html/doxygen.png diff --git a/Untracked/Doxygen/html/dynsections.js b/Untracked/Doxygen/html/dynsections.js new file mode 100644 index 0000000..116542f --- /dev/null +++ b/Untracked/Doxygen/html/dynsections.js @@ -0,0 +1,78 @@ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} +function toggleLevel(level) +{ + $('table.directory tr').each(function(){ + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l<level+1) { + i.attr('src','ftv2folderopen.png'); + a.attr('src','ftv2mnode.png'); + $(this).show(); + } else if (l==level+1) { + i.attr('src','ftv2folderclosed.png'); + a.attr('src','ftv2pnode.png'); + $(this).show(); + } else { + $(this).hide(); + } + }); + updateStripes(); +} +function toggleFolder(id) +{ + var n = $('[id^=row_'+id+']'); + var i = $('[id^=img_'+id+']'); + var a = $('[id^=arr_'+id+']'); + var c = n.slice(1); + if (c.filter(':first').is(':visible')===true) { + i.attr('src','ftv2folderclosed.png'); + a.attr('src','ftv2pnode.png'); + c.hide(); + } else { + i.attr('src','ftv2folderopen.png'); + a.attr('src','ftv2mnode.png'); + c.show(); + } + updateStripes(); +} + +function toggleInherit(id) +{ + var rows = $('tr.inherit.'+id); + var img = $('tr.inherit_header.'+id+' img'); + var src = $(img).attr('src'); + if (rows.filter(':first').is(':visible')===true) { + rows.css('display','none'); + $(img).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + rows.css('display','table-row'); // using show() causes jump in firefox + $(img).attr('src',src.substring(0,src.length-10)+'open.png'); + } +} + diff --git a/Untracked/Doxygen/html/files.html b/Untracked/Doxygen/html/files.html new file mode 100644 index 0000000..244a196 --- /dev/null +++ b/Untracked/Doxygen/html/files.html @@ -0,0 +1,103 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: File List</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li class="current"><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">File List</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">Here is a list of all documented files with brief descriptions:</div><div class="directory"> +<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><img id="arr_0_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('0_')"/><img id="img_0_" src="ftv2folderopen.png" alt="-" width="24" height="22" onclick="toggleFolder('0_')"/><a class="el" href="dir_79653c76f36ffb335e4d55f3872be1c3.html" target="_self">CryptClass</a></td><td class="desc"></td></tr> +<tr id="row_0_0_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a href="AESCrypt_8hpp_source.html"><img src="ftv2doc.png" alt="*" width="24" height="22" /></a><b>AESCrypt.hpp</b></td><td class="desc"></td></tr> +<tr id="row_0_1_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="HASHCrypt_8cpp.html" target="_self">HASHCrypt.cpp</a></td><td class="desc"><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class definitions</td></tr> +<tr id="row_0_2_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a href="HASHCrypt_8hpp_source.html"><img src="ftv2doc.png" alt="*" width="24" height="22" /></a><a class="el" href="HASHCrypt_8hpp.html" target="_self">HASHCrypt.hpp</a></td><td class="desc"><a class="el" href="classHASHCrypt.html" title="Hashing class.">HASHCrypt</a> class header</td></tr> +<tr id="row_1_" class="even"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><img src="ftv2doc.png" alt="*" width="24" height="22" /><a class="el" href="main_8cpp.html" target="_self">main.cpp</a></td><td class="desc">Entry point</td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/ftv2blank.png b/Untracked/Doxygen/html/ftv2blank.png Binary files differnew file mode 100644 index 0000000..63c605b --- /dev/null +++ b/Untracked/Doxygen/html/ftv2blank.png diff --git a/Untracked/Doxygen/html/ftv2cl.png b/Untracked/Doxygen/html/ftv2cl.png Binary files differnew file mode 100644 index 0000000..132f657 --- /dev/null +++ b/Untracked/Doxygen/html/ftv2cl.png diff --git a/Untracked/Doxygen/html/ftv2doc.png b/Untracked/Doxygen/html/ftv2doc.png Binary files differnew file mode 100644 index 0000000..17edabf --- /dev/null +++ b/Untracked/Doxygen/html/ftv2doc.png diff --git a/Untracked/Doxygen/html/ftv2folderclosed.png b/Untracked/Doxygen/html/ftv2folderclosed.png Binary files differnew file mode 100644 index 0000000..bb8ab35 --- /dev/null +++ b/Untracked/Doxygen/html/ftv2folderclosed.png diff --git a/Untracked/Doxygen/html/ftv2folderopen.png b/Untracked/Doxygen/html/ftv2folderopen.png Binary files differnew file mode 100644 index 0000000..d6c7f67 --- /dev/null +++ b/Untracked/Doxygen/html/ftv2folderopen.png diff --git a/Untracked/Doxygen/html/ftv2lastnode.png b/Untracked/Doxygen/html/ftv2lastnode.png Binary files differnew file mode 100644 index 0000000..63c605b --- /dev/null +++ b/Untracked/Doxygen/html/ftv2lastnode.png diff --git a/Untracked/Doxygen/html/ftv2link.png b/Untracked/Doxygen/html/ftv2link.png Binary files differnew file mode 100644 index 0000000..17edabf --- /dev/null +++ b/Untracked/Doxygen/html/ftv2link.png diff --git a/Untracked/Doxygen/html/ftv2mlastnode.png b/Untracked/Doxygen/html/ftv2mlastnode.png Binary files differnew file mode 100644 index 0000000..0b63f6d --- /dev/null +++ b/Untracked/Doxygen/html/ftv2mlastnode.png diff --git a/Untracked/Doxygen/html/ftv2mnode.png b/Untracked/Doxygen/html/ftv2mnode.png Binary files differnew file mode 100644 index 0000000..0b63f6d --- /dev/null +++ b/Untracked/Doxygen/html/ftv2mnode.png diff --git a/Untracked/Doxygen/html/ftv2mo.png b/Untracked/Doxygen/html/ftv2mo.png Binary files differnew file mode 100644 index 0000000..4bfb80f --- /dev/null +++ b/Untracked/Doxygen/html/ftv2mo.png diff --git a/Untracked/Doxygen/html/ftv2node.png b/Untracked/Doxygen/html/ftv2node.png Binary files differnew file mode 100644 index 0000000..63c605b --- /dev/null +++ b/Untracked/Doxygen/html/ftv2node.png diff --git a/Untracked/Doxygen/html/ftv2ns.png b/Untracked/Doxygen/html/ftv2ns.png Binary files differnew file mode 100644 index 0000000..72e3d71 --- /dev/null +++ b/Untracked/Doxygen/html/ftv2ns.png diff --git a/Untracked/Doxygen/html/ftv2plastnode.png b/Untracked/Doxygen/html/ftv2plastnode.png Binary files differnew file mode 100644 index 0000000..c6ee22f --- /dev/null +++ b/Untracked/Doxygen/html/ftv2plastnode.png diff --git a/Untracked/Doxygen/html/ftv2pnode.png b/Untracked/Doxygen/html/ftv2pnode.png Binary files differnew file mode 100644 index 0000000..c6ee22f --- /dev/null +++ b/Untracked/Doxygen/html/ftv2pnode.png diff --git a/Untracked/Doxygen/html/ftv2splitbar.png b/Untracked/Doxygen/html/ftv2splitbar.png Binary files differnew file mode 100644 index 0000000..fe895f2 --- /dev/null +++ b/Untracked/Doxygen/html/ftv2splitbar.png diff --git a/Untracked/Doxygen/html/ftv2vertline.png b/Untracked/Doxygen/html/ftv2vertline.png Binary files differnew file mode 100644 index 0000000..63c605b --- /dev/null +++ b/Untracked/Doxygen/html/ftv2vertline.png diff --git a/Untracked/Doxygen/html/functions.html b/Untracked/Doxygen/html/functions.html new file mode 100644 index 0000000..44cc25d --- /dev/null +++ b/Untracked/Doxygen/html/functions.html @@ -0,0 +1,111 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Class Members</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="classes.html"><span>Class Index</span></a></li> + <li class="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> + <div id="navrow3" class="tabs2"> + <ul class="tablist"> + <li class="current"><a href="functions.html"><span>All</span></a></li> + <li><a href="functions_func.html"><span>Functions</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +<div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div><ul> +<li>getMD5_128() +: <a class="el" href="classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0">HASHCrypt</a> +</li> +<li>getSHA_256() +: <a class="el" href="classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc">HASHCrypt</a> +</li> +<li>HASHCrypt() +: <a class="el" href="classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1">HASHCrypt</a> +</li> +<li>~HASHCrypt() +: <a class="el" href="classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd">HASHCrypt</a> +</li> +</ul> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/functions_func.html b/Untracked/Doxygen/html/functions_func.html new file mode 100644 index 0000000..71e1ebb --- /dev/null +++ b/Untracked/Doxygen/html/functions_func.html @@ -0,0 +1,111 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Class Members - Functions</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li class="current"><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="annotated.html"><span>Class List</span></a></li> + <li><a href="classes.html"><span>Class Index</span></a></li> + <li class="current"><a href="functions.html"><span>Class Members</span></a></li> + </ul> + </div> + <div id="navrow3" class="tabs2"> + <ul class="tablist"> + <li><a href="functions.html"><span>All</span></a></li> + <li class="current"><a href="functions_func.html"><span>Functions</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> + <ul> +<li>getMD5_128() +: <a class="el" href="classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0">HASHCrypt</a> +</li> +<li>getSHA_256() +: <a class="el" href="classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc">HASHCrypt</a> +</li> +<li>HASHCrypt() +: <a class="el" href="classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1">HASHCrypt</a> +</li> +<li>~HASHCrypt() +: <a class="el" href="classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd">HASHCrypt</a> +</li> +</ul> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/globals.html b/Untracked/Doxygen/html/globals.html new file mode 100644 index 0000000..d583c8b --- /dev/null +++ b/Untracked/Doxygen/html/globals.html @@ -0,0 +1,101 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: File Members</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li class="current"><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> + <div id="navrow3" class="tabs2"> + <ul class="tablist"> + <li class="current"><a href="globals.html"><span>All</span></a></li> + <li><a href="globals_func.html"><span>Functions</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> +<div class="textblock">Here is a list of all documented file members with links to the documentation:</div><ul> +<li>main() +: <a class="el" href="main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97">main.cpp</a> +</li> +</ul> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/globals_func.html b/Untracked/Doxygen/html/globals_func.html new file mode 100644 index 0000000..9ca9f08 --- /dev/null +++ b/Untracked/Doxygen/html/globals_func.html @@ -0,0 +1,101 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: File Members</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li class="current"><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> + <div id="navrow3" class="tabs2"> + <ul class="tablist"> + <li><a href="globals.html"><span>All</span></a></li> + <li class="current"><a href="globals_func.html"><span>Functions</span></a></li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="contents"> + <ul> +<li>main() +: <a class="el" href="main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97">main.cpp</a> +</li> +</ul> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/index.html b/Untracked/Doxygen/html/index.html new file mode 100644 index 0000000..a764da6 --- /dev/null +++ b/Untracked/Doxygen/html/index.html @@ -0,0 +1,88 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Main Page</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li class="current"><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">forgetIt Documentation</div> </div> +</div><!--header--> +<div class="contents"> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/jquery.js b/Untracked/Doxygen/html/jquery.js new file mode 100644 index 0000000..63939e7 --- /dev/null +++ b/Untracked/Doxygen/html/jquery.js @@ -0,0 +1,8 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function() +{g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d +&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")), +f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c) +{if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); diff --git a/Untracked/Doxygen/html/main_8cpp.html b/Untracked/Doxygen/html/main_8cpp.html new file mode 100644 index 0000000..e2b49dd --- /dev/null +++ b/Untracked/Doxygen/html/main_8cpp.html @@ -0,0 +1,154 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: main.cpp File Reference</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li class="current"><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> + <div id="navrow2" class="tabs2"> + <ul class="tablist"> + <li><a href="files.html"><span>File List</span></a></li> + <li><a href="globals.html"><span>File Members</span></a></li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +</div><!-- top --> +<div class="header"> + <div class="summary"> +<a href="#func-members">Functions</a> </div> + <div class="headertitle"> +<div class="title">main.cpp File Reference</div> </div> +</div><!--header--> +<div class="contents"> + +<p>Entry point. +<a href="#details">More...</a></p> +<div class="textblock"><code>#include <iostream></code><br/> +<code>#include <string></code><br/> +<code>#include "<a class="el" href="HASHCrypt_8hpp_source.html">CryptClass/HASHCrypt.hpp</a>"</code><br/> +</div><table class="memberdecls"> +<tr class="heading"><td colspan="2"><h2><a name="func-members"></a> +Functions</h2></td></tr> +<tr class="memitem:af5297bc20ef551d1d9c4c541bd2928b0"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af5297bc20ef551d1d9c4c541bd2928b0"></a> +void </td><td class="memItemRight" valign="bottom"><b>aff</b> (std::string chaine)</td></tr> +<tr class="memitem:a0ddf1224851353fc92bfbff6f499fa97"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97">main</a> (int argc, char *argv[])</td></tr> +<tr class="memdesc:a0ddf1224851353fc92bfbff6f499fa97"><td class="mdescLeft"> </td><td class="mdescRight">main function <a href="#a0ddf1224851353fc92bfbff6f499fa97"></a><br/></td></tr> +</table> +<a name="details" id="details"></a><h2>Detailed Description</h2> +<div class="textblock"><p>Entry point. </p> +<dl class="section author"><dt>Author</dt><dd>manzerbredes </dd></dl> +<dl class="section version"><dt>Version</dt><dd>Prototype </dd></dl> +<dl class="section date"><dt>Date</dt><dd>8 Mars 2015</dd></dl> +<p>Entry point of the application. </p> +</div><h2>Function Documentation</h2> +<a class="anchor" id="a0ddf1224851353fc92bfbff6f499fa97"></a> +<div class="memitem"> +<div class="memproto"> + <table class="memname"> + <tr> + <td class="memname">int main </td> + <td>(</td> + <td class="paramtype">int </td> + <td class="paramname"><em>argc</em>, </td> + </tr> + <tr> + <td class="paramkey"></td> + <td></td> + <td class="paramtype">char * </td> + <td class="paramname"><em>argv</em>[] </td> + </tr> + <tr> + <td></td> + <td>)</td> + <td></td><td></td> + </tr> + </table> +</div><div class="memdoc"> + +<p>main function </p> +<dl class="section author"><dt>Author</dt><dd>manzerbredes </dd></dl> +<dl class="params"><dt>Parameters</dt><dd> + <table class="params"> + <tr><td class="paramname">argc</td><td>contain *argv[] length </td></tr> + <tr><td class="paramname">*argv[]</td><td>contain the arguments list </td></tr> + </table> + </dd> +</dl> +<dl class="section return"><dt>Returns</dt><dd>Return code, an int. </dd></dl> + +</div> +</div> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/md_Readme.html b/Untracked/Doxygen/html/md_Readme.html new file mode 100644 index 0000000..2243053 --- /dev/null +++ b/Untracked/Doxygen/html/md_Readme.html @@ -0,0 +1,98 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: #README</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li class="current"><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +</div><!-- top --> +<div class="header"> + <div class="headertitle"> +<div class="title">#README </div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock"><h1>Présentation</h1> +<blockquote class="doxtable"> +<p><b>forgetIt</b> est un projet open-source permettant une gestion, une sauvegarde de vos mots de passe de manière sécurisé.<br/> +</p> +<p></p> +</blockquote> +<p>Pour cela <b>forgetIt</b> utilise des algorithmes de cryptages ayant fait leurs preuves issue de la bibliothèque *crypto++*.<br/> + La conception d'une interface graphique est prévue, et sera basé sur la bibliothèque *GTK+*.<br/> +</p> +<h1>Suite en construction...</h1> +</div></div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/nav_f.png b/Untracked/Doxygen/html/nav_f.png Binary files differnew file mode 100644 index 0000000..72a58a5 --- /dev/null +++ b/Untracked/Doxygen/html/nav_f.png diff --git a/Untracked/Doxygen/html/nav_g.png b/Untracked/Doxygen/html/nav_g.png Binary files differnew file mode 100644 index 0000000..2093a23 --- /dev/null +++ b/Untracked/Doxygen/html/nav_g.png diff --git a/Untracked/Doxygen/html/nav_h.png b/Untracked/Doxygen/html/nav_h.png Binary files differnew file mode 100644 index 0000000..33389b1 --- /dev/null +++ b/Untracked/Doxygen/html/nav_h.png diff --git a/Untracked/Doxygen/html/open.png b/Untracked/Doxygen/html/open.png Binary files differnew file mode 100644 index 0000000..30f75c7 --- /dev/null +++ b/Untracked/Doxygen/html/open.png diff --git a/Untracked/Doxygen/html/pages.html b/Untracked/Doxygen/html/pages.html new file mode 100644 index 0000000..2b76764 --- /dev/null +++ b/Untracked/Doxygen/html/pages.html @@ -0,0 +1,93 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<meta http-equiv="X-UA-Compatible" content="IE=9"/> +<title>forgetIt: Related Pages</title> +<link href="tabs.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="dynsections.js"></script> +<link href="search/search.css" rel="stylesheet" type="text/css"/> +<script type="text/javascript" src="search/search.js"></script> +<script type="text/javascript"> + $(document).ready(function() { searchBox.OnSelectItem(0); }); +</script> +<link href="doxygen.css" rel="stylesheet" type="text/css" /> +</head> +<body> +<div id="top"><!-- do not remove this div, it is closed by doxygen! --> +<div id="titlearea"> +<table cellspacing="0" cellpadding="0"> + <tbody> + <tr style="height: 56px;"> + <td style="padding-left: 0.5em;"> + <div id="projectname">forgetIt + </div> + </td> + </tr> + </tbody> +</table> +</div> +<!-- end header part --> +<!-- Generated by Doxygen 1.8.1.2 --> +<script type="text/javascript"> +var searchBox = new SearchBox("searchBox", "search",false,'Search'); +</script> + <div id="navrow1" class="tabs"> + <ul class="tablist"> + <li><a href="index.html"><span>Main Page</span></a></li> + <li class="current"><a href="pages.html"><span>Related Pages</span></a></li> + <li><a href="annotated.html"><span>Classes</span></a></li> + <li><a href="files.html"><span>Files</span></a></li> + <li> + <div id="MSearchBox" class="MSearchBoxInactive"> + <span class="left"> + <img id="MSearchSelect" src="search/mag_sel.png" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + alt=""/> + <input type="text" id="MSearchField" value="Search" accesskey="S" + onfocus="searchBox.OnSearchFieldFocus(true)" + onblur="searchBox.OnSearchFieldFocus(false)" + onkeyup="searchBox.OnSearchFieldChange(event)"/> + </span><span class="right"> + <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> + </span> + </div> + </li> + </ul> + </div> +</div><!-- top --> +<!-- window showing the filter options --> +<div id="MSearchSelectWindow" + onmouseover="return searchBox.OnSearchSelectShow()" + onmouseout="return searchBox.OnSearchSelectHide()" + onkeydown="return searchBox.OnSearchSelectKey(event)"> +<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div> + +<!-- iframe showing the search results (closed by default) --> +<div id="MSearchResultsWindow"> +<iframe src="javascript:void(0)" frameborder="0" + name="MSearchResults" id="MSearchResults"> +</iframe> +</div> + +<div class="header"> + <div class="headertitle"> +<div class="title">Related Pages</div> </div> +</div><!--header--> +<div class="contents"> +<div class="textblock">Here is a list of all related documentation pages:</div><div class="directory"> +<table class="directory"> +<tr id="row_0_" class="even"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="md_Readme.html" target="_self">#README</a></td><td class="desc"></td></tr> +</table> +</div><!-- directory --> +</div><!-- contents --> +<!-- start footer part --> +<hr class="footer"/><address class="footer"><small> +Generated on Sun Mar 8 2015 08:56:48 for forgetIt by  <a href="http://www.doxygen.org/index.html"> +<img class="footer" src="doxygen.png" alt="doxygen"/> +</a> 1.8.1.2 +</small></address> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/all_67.html b/Untracked/Doxygen/html/search/all_67.html new file mode 100644 index 0000000..41a459a --- /dev/null +++ b/Untracked/Doxygen/html/search/all_67.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_67.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/all_67.js b/Untracked/Doxygen/html/search/all_67.js new file mode 100644 index 0000000..90f3fb1 --- /dev/null +++ b/Untracked/Doxygen/html/search/all_67.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['getmd5_5f128',['getMD5_128',['../classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0',1,'HASHCrypt']]], + ['getsha_5f256',['getSHA_256',['../classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc',1,'HASHCrypt']]] +]; diff --git a/Untracked/Doxygen/html/search/all_68.html b/Untracked/Doxygen/html/search/all_68.html new file mode 100644 index 0000000..6df9097 --- /dev/null +++ b/Untracked/Doxygen/html/search/all_68.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_68.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/all_68.js b/Untracked/Doxygen/html/search/all_68.js new file mode 100644 index 0000000..3d7f7f1 --- /dev/null +++ b/Untracked/Doxygen/html/search/all_68.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['hashcrypt',['HASHCrypt',['../classHASHCrypt.html',1,'HASHCrypt'],['../classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1',1,'HASHCrypt::HASHCrypt()']]], + ['hashcrypt_2ecpp',['HASHCrypt.cpp',['../HASHCrypt_8cpp.html',1,'']]], + ['hashcrypt_2ehpp',['HASHCrypt.hpp',['../HASHCrypt_8hpp.html',1,'']]] +]; diff --git a/Untracked/Doxygen/html/search/all_6d.html b/Untracked/Doxygen/html/search/all_6d.html new file mode 100644 index 0000000..2e27d4d --- /dev/null +++ b/Untracked/Doxygen/html/search/all_6d.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_6d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/all_6d.js b/Untracked/Doxygen/html/search/all_6d.js new file mode 100644 index 0000000..8bcfb40 --- /dev/null +++ b/Untracked/Doxygen/html/search/all_6d.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['main',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]], + ['main_2ecpp',['main.cpp',['../main_8cpp.html',1,'']]] +]; diff --git a/Untracked/Doxygen/html/search/all_7e.html b/Untracked/Doxygen/html/search/all_7e.html new file mode 100644 index 0000000..63512c6 --- /dev/null +++ b/Untracked/Doxygen/html/search/all_7e.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="all_7e.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/all_7e.js b/Untracked/Doxygen/html/search/all_7e.js new file mode 100644 index 0000000..710e97e --- /dev/null +++ b/Untracked/Doxygen/html/search/all_7e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_7ehashcrypt',['~HASHCrypt',['../classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd',1,'HASHCrypt']]] +]; diff --git a/Untracked/Doxygen/html/search/classes_68.html b/Untracked/Doxygen/html/search/classes_68.html new file mode 100644 index 0000000..475eeb7 --- /dev/null +++ b/Untracked/Doxygen/html/search/classes_68.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="classes_68.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/classes_68.js b/Untracked/Doxygen/html/search/classes_68.js new file mode 100644 index 0000000..0462f21 --- /dev/null +++ b/Untracked/Doxygen/html/search/classes_68.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['hashcrypt',['HASHCrypt',['../classHASHCrypt.html',1,'']]] +]; diff --git a/Untracked/Doxygen/html/search/close.png b/Untracked/Doxygen/html/search/close.png Binary files differnew file mode 100644 index 0000000..9342d3d --- /dev/null +++ b/Untracked/Doxygen/html/search/close.png diff --git a/Untracked/Doxygen/html/search/files_68.html b/Untracked/Doxygen/html/search/files_68.html new file mode 100644 index 0000000..8ead589 --- /dev/null +++ b/Untracked/Doxygen/html/search/files_68.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="files_68.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/files_68.js b/Untracked/Doxygen/html/search/files_68.js new file mode 100644 index 0000000..1405c0c --- /dev/null +++ b/Untracked/Doxygen/html/search/files_68.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['hashcrypt_2ecpp',['HASHCrypt.cpp',['../HASHCrypt_8cpp.html',1,'']]], + ['hashcrypt_2ehpp',['HASHCrypt.hpp',['../HASHCrypt_8hpp.html',1,'']]] +]; diff --git a/Untracked/Doxygen/html/search/files_6d.html b/Untracked/Doxygen/html/search/files_6d.html new file mode 100644 index 0000000..d9d9300 --- /dev/null +++ b/Untracked/Doxygen/html/search/files_6d.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="files_6d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/files_6d.js b/Untracked/Doxygen/html/search/files_6d.js new file mode 100644 index 0000000..c93faff --- /dev/null +++ b/Untracked/Doxygen/html/search/files_6d.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['main_2ecpp',['main.cpp',['../main_8cpp.html',1,'']]] +]; diff --git a/Untracked/Doxygen/html/search/functions_67.html b/Untracked/Doxygen/html/search/functions_67.html new file mode 100644 index 0000000..d0ab42a --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_67.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_67.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/functions_67.js b/Untracked/Doxygen/html/search/functions_67.js new file mode 100644 index 0000000..90f3fb1 --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_67.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['getmd5_5f128',['getMD5_128',['../classHASHCrypt.html#aa44ba778865df0025793506eff45e8f0',1,'HASHCrypt']]], + ['getsha_5f256',['getSHA_256',['../classHASHCrypt.html#aae74b6215ff20533b421e3bb61f561dc',1,'HASHCrypt']]] +]; diff --git a/Untracked/Doxygen/html/search/functions_68.html b/Untracked/Doxygen/html/search/functions_68.html new file mode 100644 index 0000000..66b85be --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_68.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_68.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/functions_68.js b/Untracked/Doxygen/html/search/functions_68.js new file mode 100644 index 0000000..fc4494e --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_68.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['hashcrypt',['HASHCrypt',['../classHASHCrypt.html#a1eeb2543bd9b49e5dd9d6f4d5939eca1',1,'HASHCrypt']]] +]; diff --git a/Untracked/Doxygen/html/search/functions_6d.html b/Untracked/Doxygen/html/search/functions_6d.html new file mode 100644 index 0000000..d01ac53 --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_6d.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_6d.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/functions_6d.js b/Untracked/Doxygen/html/search/functions_6d.js new file mode 100644 index 0000000..ef1415a --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_6d.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['main',['main',['../main_8cpp.html#a0ddf1224851353fc92bfbff6f499fa97',1,'main.cpp']]] +]; diff --git a/Untracked/Doxygen/html/search/functions_7e.html b/Untracked/Doxygen/html/search/functions_7e.html new file mode 100644 index 0000000..fd1d3ce --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_7e.html @@ -0,0 +1,25 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="functions_7e.js"></script> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="Loading">Loading...</div> +<div id="SRResults"></div> +<script type="text/javascript"><!-- +createResults(); +--></script> +<div class="SRStatus" id="Searching">Searching...</div> +<div class="SRStatus" id="NoMatches">No Matches</div> +<script type="text/javascript"><!-- +document.getElementById("Loading").style.display="none"; +document.getElementById("NoMatches").style.display="none"; +var searchResults = new SearchResults("searchResults"); +searchResults.Search(); +--></script> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/functions_7e.js b/Untracked/Doxygen/html/search/functions_7e.js new file mode 100644 index 0000000..710e97e --- /dev/null +++ b/Untracked/Doxygen/html/search/functions_7e.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_7ehashcrypt',['~HASHCrypt',['../classHASHCrypt.html#a55205da17c4c8a9c00c408bbe3b054dd',1,'HASHCrypt']]] +]; diff --git a/Untracked/Doxygen/html/search/mag_sel.png b/Untracked/Doxygen/html/search/mag_sel.png Binary files differnew file mode 100644 index 0000000..81f6040 --- /dev/null +++ b/Untracked/Doxygen/html/search/mag_sel.png diff --git a/Untracked/Doxygen/html/search/nomatches.html b/Untracked/Doxygen/html/search/nomatches.html new file mode 100644 index 0000000..b1ded27 --- /dev/null +++ b/Untracked/Doxygen/html/search/nomatches.html @@ -0,0 +1,12 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html><head><title></title> +<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> +<link rel="stylesheet" type="text/css" href="search.css"/> +<script type="text/javascript" src="search.js"></script> +</head> +<body class="SRPage"> +<div id="SRIndex"> +<div class="SRStatus" id="NoMatches">No Matches</div> +</div> +</body> +</html> diff --git a/Untracked/Doxygen/html/search/search.css b/Untracked/Doxygen/html/search/search.css new file mode 100644 index 0000000..d18c1da --- /dev/null +++ b/Untracked/Doxygen/html/search/search.css @@ -0,0 +1,238 @@ +/*---------------- Search Box */ + +#FSearchBox { + float: left; +} + +#MSearchBox { + white-space : nowrap; + position: absolute; + float: none; + display: inline; + margin-top: 8px; + right: 0px; + width: 170px; + z-index: 102; + background-color: white; +} + +#MSearchBox .left +{ + display:block; + position:absolute; + left:10px; + width:20px; + height:19px; + background:url('search_l.png') no-repeat; + background-position:right; +} + +#MSearchSelect { + display:block; + position:absolute; + width:20px; + height:19px; +} + +.left #MSearchSelect { + left:4px; +} + +.right #MSearchSelect { + right:5px; +} + +#MSearchField { + display:block; + position:absolute; + height:19px; + background:url('search_m.png') repeat-x; + border:none; + width:116px; + margin-left:20px; + padding-left:4px; + color: #909090; + outline: none; + font: 9pt Arial, Verdana, sans-serif; +} + +#FSearchBox #MSearchField { + margin-left:15px; +} + +#MSearchBox .right { + display:block; + position:absolute; + right:10px; + top:0px; + width:20px; + height:19px; + background:url('search_r.png') no-repeat; + background-position:left; +} + +#MSearchClose { + display: none; + position: absolute; + top: 4px; + background : none; + border: none; + margin: 0px 4px 0px 0px; + padding: 0px 0px; + outline: none; +} + +.left #MSearchClose { + left: 6px; +} + +.right #MSearchClose { + right: 2px; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 1; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; +} + +.SRResult { + display: none; +} + +DIV.searchresults { + margin-left: 10px; + margin-right: 10px; +} diff --git a/Untracked/Doxygen/html/search/search.js b/Untracked/Doxygen/html/search/search.js new file mode 100644 index 0000000..1cd40fe --- /dev/null +++ b/Untracked/Doxygen/html/search/search.js @@ -0,0 +1,801 @@ +// Search script generated by doxygen +// Copyright (C) 2009 by Dimitri van Heesch. + +// The code in this file is loosly based on main.js, part of Natural Docs, +// which is Copyright (C) 2003-2008 Greg Valure +// Natural Docs is licensed under the GPL. + +var indexSectionsWithContent = +{ + 0: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000100000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 1: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 2: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + 3: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000100000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" +}; + +var indexSectionNames = +{ + 0: "all", + 1: "classes", + 2: "files", + 3: "functions" +}; + +function convertToId(search) +{ + var result = ''; + for (i=0;i<search.length;i++) + { + var c = search.charAt(i); + var cn = c.charCodeAt(0); + if (c.match(/[a-z0-9]/)) + { + result+=c; + } + else if (cn<16) + { + result+="_0"+cn.toString(16); + } + else + { + result+="_"+cn.toString(16); + } + } + return result; +} + +function getXPos(item) +{ + var x = 0; + if (item.offsetWidth) + { + while (item && item!=document.body) + { + x += item.offsetLeft; + item = item.offsetParent; + } + } + return x; +} + +function getYPos(item) +{ + var y = 0; + if (item.offsetWidth) + { + while (item && item!=document.body) + { + y += item.offsetTop; + item = item.offsetParent; + } + } + return y; +} + +/* A class handling everything associated with the search panel. + + Parameters: + name - The name of the global variable that will be + storing this instance. Is needed to be able to set timeouts. + resultPath - path to use for external files +*/ +function SearchBox(name, resultsPath, inFrame, label) +{ + if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } + + // ---------- Instance variables + this.name = name; + this.resultsPath = resultsPath; + this.keyTimeout = 0; + this.keyTimeoutLength = 500; + this.closeSelectionTimeout = 300; + this.lastSearchValue = ""; + this.lastResultsPage = ""; + this.hideTimeout = 0; + this.searchIndex = 0; + this.searchActive = false; + this.insideFrame = inFrame; + this.searchLabel = label; + + // ----------- DOM Elements + + this.DOMSearchField = function() + { return document.getElementById("MSearchField"); } + + this.DOMSearchSelect = function() + { return document.getElementById("MSearchSelect"); } + + this.DOMSearchSelectWindow = function() + { return document.getElementById("MSearchSelectWindow"); } + + this.DOMPopupSearchResults = function() + { return document.getElementById("MSearchResults"); } + + this.DOMPopupSearchResultsWindow = function() + { return document.getElementById("MSearchResultsWindow"); } + + this.DOMSearchClose = function() + { return document.getElementById("MSearchClose"); } + + this.DOMSearchBox = function() + { return document.getElementById("MSearchBox"); } + + // ------------ Event Handlers + + // Called when focus is added or removed from the search field. + this.OnSearchFieldFocus = function(isActive) + { + this.Activate(isActive); + } + + this.OnSearchSelectShow = function() + { + var searchSelectWindow = this.DOMSearchSelectWindow(); + var searchField = this.DOMSearchSelect(); + + if (this.insideFrame) + { + var left = getXPos(searchField); + var top = getYPos(searchField); + left += searchField.offsetWidth + 6; + top += searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + left -= searchSelectWindow.offsetWidth; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + } + else + { + var left = getXPos(searchField); + var top = getYPos(searchField); + top += searchField.offsetHeight; + + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; + } + + // stop selection hide timer + if (this.hideTimeout) + { + clearTimeout(this.hideTimeout); + this.hideTimeout=0; + } + return false; // to avoid "image drag" default event + } + + this.OnSearchSelectHide = function() + { + this.hideTimeout = setTimeout(this.name +".CloseSelectionWindow()", + this.closeSelectionTimeout); + } + + // Called when the content of the search field is changed. + this.OnSearchFieldChange = function(evt) + { + if (this.keyTimeout) // kill running timer + { + clearTimeout(this.keyTimeout); + this.keyTimeout = 0; + } + + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 || e.keyCode==13) + { + if (e.shiftKey==1) + { + this.OnSearchSelectShow(); + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + child.focus(); + return; + } + } + return; + } + else if (window.frames.MSearchResults.searchResults) + { + var elem = window.frames.MSearchResults.searchResults.NavNext(0); + if (elem) elem.focus(); + } + } + else if (e.keyCode==27) // Escape out of the search field + { + this.DOMSearchField().blur(); + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.lastSearchValue = ''; + this.Activate(false); + return; + } + + // strip whitespaces + var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); + + if (searchValue != this.lastSearchValue) // search value has changed + { + if (searchValue != "") // non-empty search + { + // set timer for search update + this.keyTimeout = setTimeout(this.name + '.Search()', + this.keyTimeoutLength); + } + else // empty search field + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.lastSearchValue = ''; + } + } + } + + this.SelectItemCount = function(id) + { + var count=0; + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + count++; + } + } + return count; + } + + this.SelectItemSet = function(id) + { + var i,j=0; + var win=this.DOMSearchSelectWindow(); + for (i=0;i<win.childNodes.length;i++) + { + var child = win.childNodes[i]; // get span within a + if (child.className=='SelectItem') + { + var node = child.firstChild; + if (j==id) + { + node.innerHTML='•'; + } + else + { + node.innerHTML=' '; + } + j++; + } + } + } + + // Called when an search filter selection is made. + // set item with index id as the active item + this.OnSelectItem = function(id) + { + this.searchIndex = id; + this.SelectItemSet(id); + var searchValue = this.DOMSearchField().value.replace(/ +/g, ""); + if (searchValue!="" && this.searchActive) // something was found -> do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down + { + this.searchIndex++; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==38 && this.searchIndex>0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var hexCode; + if (code<16) + { + hexCode="0"+code.toString(16); + } + else + { + hexCode=code.toString(16); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + if (indexSectionsWithContent[this.searchIndex].charAt(code) == '1') + { + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of <Search()>. + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e<searchData.length; e++) + { + var id = searchData[e][0]; + var srResult = document.createElement('div'); + srResult.setAttribute('id','SR_'+id); + setClassAttr(srResult,'SRResult'); + var srEntry = document.createElement('div'); + setClassAttr(srEntry,'SREntry'); + var srLink = document.createElement('a'); + srLink.setAttribute('id','Item'+e); + setKeyActions(srLink,'return searchResults.Nav(event,'+e+')'); + setClassAttr(srLink,'SRSymbol'); + srLink.innerHTML = searchData[e][1][0]; + srEntry.appendChild(srLink); + if (searchData[e][1].length==2) // single result + { + srLink.setAttribute('href',searchData[e][1][1][0]); + if (searchData[e][1][1][1]) + { + srLink.setAttribute('target','_parent'); + } + var srScope = document.createElement('span'); + setClassAttr(srScope,'SRScope'); + srScope.innerHTML = searchData[e][1][1][2]; + srEntry.appendChild(srScope); + } + else // multiple results + { + srLink.setAttribute('href','javascript:searchResults.Toggle("SR_'+id+'")'); + var srChildren = document.createElement('div'); + setClassAttr(srChildren,'SRChildren'); + for (var c=0; c<searchData[e][1].length-1; c++) + { + var srChild = document.createElement('a'); + srChild.setAttribute('id','Item'+e+'_c'+c); + setKeyActions(srChild,'return searchResults.NavChild(event,'+e+','+c+')'); + setClassAttr(srChild,'SRScope'); + srChild.setAttribute('href',searchData[e][1][c+1][0]); + if (searchData[e][1][c+1][1]) + { + srChild.setAttribute('target','_parent'); + } + srChild.innerHTML = searchData[e][1][c+1][2]; + srChildren.appendChild(srChild); + } + srEntry.appendChild(srChildren); + } + srResult.appendChild(srEntry); + results.appendChild(srResult); + } +} + diff --git a/Untracked/Doxygen/html/search/search_l.png b/Untracked/Doxygen/html/search/search_l.png Binary files differnew file mode 100644 index 0000000..c872f4d --- /dev/null +++ b/Untracked/Doxygen/html/search/search_l.png diff --git a/Untracked/Doxygen/html/search/search_m.png b/Untracked/Doxygen/html/search/search_m.png Binary files differnew file mode 100644 index 0000000..b429a16 --- /dev/null +++ b/Untracked/Doxygen/html/search/search_m.png diff --git a/Untracked/Doxygen/html/search/search_r.png b/Untracked/Doxygen/html/search/search_r.png Binary files differnew file mode 100644 index 0000000..97ee8b4 --- /dev/null +++ b/Untracked/Doxygen/html/search/search_r.png diff --git a/Untracked/Doxygen/html/sync_off.png b/Untracked/Doxygen/html/sync_off.png Binary files differnew file mode 100644 index 0000000..3b443fc --- /dev/null +++ b/Untracked/Doxygen/html/sync_off.png diff --git a/Untracked/Doxygen/html/sync_on.png b/Untracked/Doxygen/html/sync_on.png Binary files differnew file mode 100644 index 0000000..e08320f --- /dev/null +++ b/Untracked/Doxygen/html/sync_on.png diff --git a/Untracked/Doxygen/html/tab_a.png b/Untracked/Doxygen/html/tab_a.png Binary files differnew file mode 100644 index 0000000..3b725c4 --- /dev/null +++ b/Untracked/Doxygen/html/tab_a.png diff --git a/Untracked/Doxygen/html/tab_b.png b/Untracked/Doxygen/html/tab_b.png Binary files differnew file mode 100644 index 0000000..258c141 --- /dev/null +++ b/Untracked/Doxygen/html/tab_b.png diff --git a/Untracked/Doxygen/html/tab_h.png b/Untracked/Doxygen/html/tab_h.png Binary files differnew file mode 100644 index 0000000..4ca9102 --- /dev/null +++ b/Untracked/Doxygen/html/tab_h.png diff --git a/Untracked/Doxygen/html/tab_s.png b/Untracked/Doxygen/html/tab_s.png Binary files differnew file mode 100644 index 0000000..ab478c9 --- /dev/null +++ b/Untracked/Doxygen/html/tab_s.png diff --git a/Untracked/Doxygen/html/tabs.css b/Untracked/Doxygen/html/tabs.css new file mode 100644 index 0000000..9cf578f --- /dev/null +++ b/Untracked/Doxygen/html/tabs.css @@ -0,0 +1,60 @@ +.tabs, .tabs2, .tabs3 { + background-image: url('tab_b.png'); + width: 100%; + z-index: 101; + font-size: 13px; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +} + +.tabs2 { + font-size: 10px; +} +.tabs3 { + font-size: 9px; +} + +.tablist { + margin: 0; + padding: 0; + display: table; +} + +.tablist li { + float: left; + display: table-cell; + background-image: url('tab_b.png'); + line-height: 36px; + list-style: none; +} + +.tablist a { + display: block; + padding: 0 20px; + font-weight: bold; + background-image:url('tab_s.png'); + background-repeat:no-repeat; + background-position:right; + color: #283A5D; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; + outline: none; +} + +.tabs3 .tablist a { + padding: 0 10px; +} + +.tablist a:hover { + background-image: url('tab_h.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); + text-decoration: none; +} + +.tablist li.current a { + background-image: url('tab_a.png'); + background-repeat:repeat-x; + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +} diff --git a/Untracked/Doxygen/main+file.cpp b/Untracked/Doxygen/main+file.cpp new file mode 100644 index 0000000..dc09d34 --- /dev/null +++ b/Untracked/Doxygen/main+file.cpp @@ -0,0 +1,86 @@ +/** + * @file main.cpp + * @brief Entry point + * @author manzerbredes + * @version Prototype + * @date 8 Mars 2015 + * + * Entry point of the application. + * + */ + + + +//----- std ----- + +#include <iostream> +#include <string> +#include <fstream> + +//----- class ----- +#include "CryptClass/AESCrypt.hpp" +#include "CryptClass/HASHCrypt.hpp" + +//----- Prototype ----- +void aff(std::string chaine); + + +/** + * @fn int main(int argc, char *argv[]) + * @author manzerbredes + * @brief main function + * @param argc contain *argv[] length + * @param *argv[] contain the arguments list + * @return Return code, an int. + */ +int main(int argc, char *argv[]){ + + + + /*for(int i=0;i< 1000;i++){ + for(int j=0;j< 100;j++){ +*/ + AESCrypt cryptage=AESCrypt(); + HASHCrypt hash; + + + std::string cle="loic"; + std::string data="ABCDEFGH"; + + byte digest[16]; + hash.getMD5_128(data, digest, sizeof(digest)); + + std::cout << hash.digestToString(digest, sizeof(digest)); + + + std::ofstream fw; + fw.open ("bob.bin", std::ios::out | std::ios::binary); + + fw.write((char *) digest,sizeof(digest)); + + fw.close(); + + std::ifstream fr; + fr.open ("bob.bin", std::ios::in | std::ios::binary); + + byte bb[16]; + fr.read((char*) bb, sizeof(bb)); + + fr.close(); + bb[0]=-9; + + std::cout << std::endl << hash.digestToString(bb, sizeof(bb)); + + + return 0; + +} + + + + +//---- Functions ----- + +void aff(std::string chaine){ + std::cout << chaine; +} diff --git a/Untracked/Doxygen/main.cpp b/Untracked/Doxygen/main.cpp new file mode 100644 index 0000000..92d033c --- /dev/null +++ b/Untracked/Doxygen/main.cpp @@ -0,0 +1,129 @@ +/** + * @file main.cpp + * @brief Entry point + * @author manzerbredes + * @version Prototype + * @date 8 Mars 2015 + * + * Entry point of the application. + * + */ + + + +//----- std ----- + +#include <iostream> +#include <string> + +//----- class ----- +#include "CryptClass/AESCrypt.hpp" + +//----- Prototype ----- +void aff(std::string chaine); + + + + #include <xercesc/parsers/XercesDOMParser.hpp> + #include <xercesc/dom/DOM.hpp> + #include <xercesc/framework/MemBufInputSource.hpp> + #include <xercesc/sax/HandlerBase.hpp> + #include <xercesc/util/XMLString.hpp> + #include <xercesc/util/PlatformUtils.hpp> +using namespace xercesc; + +/** + * @fn int main(int argc, char *argv[]) + * @author manzerbredes + * @brief main function + * @param argc contain *argv[] length + * @param *argv[] contain the arguments list + * @return Return code, an int. + */ +int main(int argc, char *argv[]){ + + try { + XMLPlatformUtils::Initialize(); + } + catch (const XMLException& toCatch) { + // Do your failure processing here + return 1; + } + + std::string xml="<root>\n\ + <mo><![CDATA[ zalmkdzkl!:<<!!;<ii>!:!!;:!:;]]>\ + </mo>\ + </root>"; + + XercesDOMParser *parser = new XercesDOMParser(); + MemBufInputSource myxml_buf((const XMLByte*)xml.c_str(), xml.size(), "dummy",false); + parser->parse(myxml_buf); + + DOMDocument* xmlDoc = parser->getDocument(); + DOMElement* root=xmlDoc->getDocumentElement(); + + DOMNodeList* children = root->getChildNodes(); + const XMLSize_t nodeCount = children->getLength(); + + + + for(int i=0;i<nodeCount;i++){ + DOMNode* ne=children->item(i); + char* valeur = XMLString::transcode(ne->getTextContent()); + + std::string nom(valeur); + std::cout << nom; + + } + + + + + // Do your actual work with Xerces-C++ here. + + //XMLPlatformUtils::Terminate(); + + + + + + + /*HASHCrypt hash= HASHCrypt(); + + byte code[16]; + + hash.getMD5_128("Phrase de test !", code, sizeof(code)); + + for(int i=0; i<16;i++){ + std::cout << code[i]; + } + */ + + + /*AESCrypt cryptage= AESCrypt(); + std::string key="loic"; + std::string data(127,'A'); + + std::cout << data << std::endl; + + std::string dataE=cryptage.encrypt(key, data); + + std::cout << std::endl <<dataE << std::endl; + + std::string key2="loic"; + std::string dataD=cryptage.decrypt(key2, dataE); + std::cout << std::endl << dataD << std::endl; +*/ + + return 0; + +} + + + + +//---- Functions ----- + +void aff(std::string chaine){ + std::cout << chaine; +} diff --git a/Untracked/bin/Debug/forgetIt b/Untracked/bin/Debug/forgetIt Binary files differnew file mode 100755 index 0000000..2d7916c --- /dev/null +++ b/Untracked/bin/Debug/forgetIt diff --git a/Untracked/forgetIt.cbp b/Untracked/forgetIt.cbp new file mode 100644 index 0000000..8144e41 --- /dev/null +++ b/Untracked/forgetIt.cbp @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="forgetIt" /> + <Option execution_dir="/home/loic/Documents/c/forgetIt/" /> + <Option pch_mode="2" /> + <Option compiler="forgetit_compiler" /> + <Build> + <Target title="Debug"> + <Option output="bin/Debug/forgetIt" prefix_auto="1" extension_auto="1" /> + <Option working_dir="/home/loic/Documents/c/forgetIt/Untracked" /> + <Option object_output="obj/Debug/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-g" /> + <Add option="`pkg-config --cflags gtk+-3.0`" /> + <Add option="`pkg-config libxml++-2.6 --cflags`" /> + <Add option="-I ../src/CryptClass" /> + <Add option="-I ../src/IOFileClass" /> + <Add option="-I ../src/ParserClass" /> + <Add option="-I ../src/ParserClass/FileManContainer" /> + <Add option="-std=c++11" /> + <Add directory="/home/loic/Documents/c/forgetIt/" /> + </Compiler> + <Linker> + <Add option="`pkg-config --libs gtk+-3.0`" /> + <Add option="`pkg-config libxml++-2.6 --libs`" /> + <Add library="crypto++" /> + <Add directory="/home/loic/Documents/c/forgetIt/" /> + </Linker> + </Target> + <Target title="Release"> + <Option output="bin/Release/forgetIt" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Release/" /> + <Option type="1" /> + <Option compiler="forgetit_compiler" /> + <Compiler> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-Wall" /> + <Add option="-fexceptions" /> + </Compiler> + <Unit filename="../src/CryptClass/AESCrypt.cpp" /> + <Unit filename="../src/CryptClass/AESCrypt.hpp" /> + <Unit filename="../src/CryptClass/AbstractSKA.hpp" /> + <Unit filename="../src/CryptClass/HASHCrypt.cpp" /> + <Unit filename="../src/CryptClass/HASHCrypt.hpp" /> + <Unit filename="../src/IOFileClass/FileManIOFile.cpp" /> + <Unit filename="../src/IOFileClass/FileManIOFile.hpp" /> + <Unit filename="../src/ParserClass/AbstractIDManager.cpp" /> + <Unit filename="../src/ParserClass/AbstractIDManager.hpp" /> + <Unit filename="../src/ParserClass/FileManContainer/Website.cpp" /> + <Unit filename="../src/ParserClass/FileManContainer/Website.hpp" /> + <Unit filename="../src/ParserClass/FileManParser.cpp" /> + <Unit filename="../src/ParserClass/FileManParser.hpp" /> + <Unit filename="../src/main.cpp" /> + <Extensions> + <code_completion> + <search_path add="/usr/include/crypto++" /> + <search_path add="/usr/include/gtk-3.0/" /> + </code_completion> + <debugger /> + </Extensions> + </Project> +</CodeBlocks_project_file> diff --git a/Untracked/forgetIt.depend b/Untracked/forgetIt.depend new file mode 100644 index 0000000..19411c9 --- /dev/null +++ b/Untracked/forgetIt.depend @@ -0,0 +1,2924 @@ +# depslib dependency file v1.0 +1426411468 source:/home/loic/Documents/c/forgetIt/main.cpp + <iostream> + <string> + <vector> + "FileManIOFile.hpp" + "FileManParser.hpp" + "Website.hpp" + <gtk/gtk.h> + +1425572032 source:/home/loic/Documents/c/forgetIt/crypto++/AESCrypt.cpp + +1425572056 source:/home/loic/Documents/c/forgetIt/crypto++/MD5Crypt.cpp + +1425620068 source:/home/loic/Documents/c/forgetIt/crypto++/HASHCrypt.cpp + "HASHCrypt.hpp" + +1425624372 /home/loic/Documents/c/forgetIt/crypto++/HASHCrypt.hpp + <string> + "crypto++/md5.h" + "crypto++/hex.h" + +1426245655 source:/home/loic/Documents/c/forgetIt/CryptClass/AESCrypt.cpp + "AESCrypt.hpp" + +1426244841 source:/home/loic/Documents/c/forgetIt/CryptClass/HASHCrypt.cpp + "HASHCrypt.hpp" + +1426244841 /home/loic/Documents/c/forgetIt/CryptClass/HASHCrypt.hpp + <iostream> + <string> + <sstream> + <crypto++/md5.h> + <crypto++/hex.h> + <crypto++/sha.h> + +1281102268 /home/loic/Documents/c/forgetIt/libs/crypto++/md5.h + "iterhash.h" + +1281102264 /home/loic/Documents/c/forgetIt/libs/crypto++/iterhash.h + "cryptlib.h" + "secblock.h" + "misc.h" + "simple.h" + +1361359854 /home/loic/Documents/c/forgetIt/libs/crypto++/cryptlib.h + "config.h" + "stdcpp.h" + +1361359854 /home/loic/Documents/c/forgetIt/libs/crypto++/config.h + <malloc.h> + +1281345762 /home/loic/Documents/c/forgetIt/libs/crypto++/stdcpp.h + <intrin.h> + <stddef.h> + <assert.h> + <limits.h> + <stdlib.h> + <string.h> + <memory> + <string> + <exception> + <typeinfo> + <algorithm> + <map> + <vector> + <vector.cc> + <alloca.h> + <malloc.h> + +1361359852 /home/loic/Documents/c/forgetIt/libs/crypto++/secblock.h + "config.h" + "misc.h" + <assert.h> + +1361359852 /home/loic/Documents/c/forgetIt/libs/crypto++/misc.h + "cryptlib.h" + "smartptr.h" + <string.h> + <intrin.h> + <mem.h> + <byteswap.h> + +1281102380 /home/loic/Documents/c/forgetIt/libs/crypto++/smartptr.h + "config.h" + <algorithm> + +1281102264 /home/loic/Documents/c/forgetIt/libs/crypto++/simple.h + "cryptlib.h" + "misc.h" + +1281102272 /home/loic/Documents/c/forgetIt/libs/crypto++/hex.h + "basecode.h" + +1281102272 /home/loic/Documents/c/forgetIt/libs/crypto++/basecode.h + "filters.h" + "algparam.h" + "argnames.h" + +1281345762 /home/loic/Documents/c/forgetIt/libs/crypto++/filters.h + "simple.h" + "secblock.h" + "misc.h" + "smartptr.h" + "queue.h" + "algparam.h" + <deque> + +1361359854 /home/loic/Documents/c/forgetIt/libs/crypto++/queue.h + "simple.h" + +1281102374 /home/loic/Documents/c/forgetIt/libs/crypto++/algparam.h + "cryptlib.h" + "smartptr.h" + "secblock.h" + +1281102382 /home/loic/Documents/c/forgetIt/libs/crypto++/argnames.h + "cryptlib.h" + +1281102262 source:/home/loic/Documents/c/forgetIt/libs/crypto++/filters.cpp + "pch.h" + "filters.h" + "mqueue.h" + "fltrimpl.h" + "argnames.h" + <memory> + <functional> + +1281102268 /home/loic/Documents/c/forgetIt/libs/crypto++/pch.h + "cpu.h" + "config.h" + "simple.h" + "secblock.h" + "misc.h" + "smartptr.h" + +1281102378 /home/loic/Documents/c/forgetIt/libs/crypto++/cpu.h + "config.h" + <emmintrin.h> + <tmmintrin.h> + <smmintrin.h> + <wmmintrin.h> + +1281102388 /home/loic/Documents/c/forgetIt/libs/crypto++/mqueue.h + "queue.h" + "filters.h" + <deque> + +1281102268 /home/loic/Documents/c/forgetIt/libs/crypto++/fltrimpl.h + +1281102382 /home/loic/Documents/c/forgetIt/libs/crypto++/files.h + "cryptlib.h" + "filters.h" + "argnames.h" + <iostream> + <fstream> + +1281345762 /home/loic/Documents/c/forgetIt/libs/crypto++/osrng.h + "config.h" + "randpool.h" + "rng.h" + "aes.h" + "sha.h" + "fips140.h" + +1281102264 /home/loic/Documents/c/forgetIt/libs/crypto++/randpool.h + "cryptlib.h" + "filters.h" + +1281102272 /home/loic/Documents/c/forgetIt/libs/crypto++/rng.h + "cryptlib.h" + "filters.h" + +1281102268 /home/loic/Documents/c/forgetIt/libs/crypto++/aes.h + "rijndael.h" + +1281102388 /home/loic/Documents/c/forgetIt/libs/crypto++/rijndael.h + "seckey.h" + "secblock.h" + +1281102268 /home/loic/Documents/c/forgetIt/libs/crypto++/seckey.h + "cryptlib.h" + "misc.h" + "simple.h" + +1281102264 /home/loic/Documents/c/forgetIt/libs/crypto++/sha.h + "iterhash.h" + +1281102266 /home/loic/Documents/c/forgetIt/libs/crypto++/fips140.h + "cryptlib.h" + "secblock.h" + +1281102378 /home/loic/Documents/c/forgetIt/libs/crypto++/integer.h + "cryptlib.h" + "secblock.h" + <iosfwd> + <algorithm> + +1426244841 /home/loic/Documents/c/forgetIt/CryptClass/AbstractSKA.hpp + <string> + +1426245515 /home/loic/Documents/c/forgetIt/CryptClass/AESCrypt.hpp + "AbstractSKA.hpp" + "HASHCrypt.hpp" + <iostream> + <crypto++/aes.h> + <crypto++/modes.h> + <crypto++/filters.h> + +1426789990 source:/home/loic/Documents/c/forgetIt/IOFileClass/FileManIOFile.cpp + "FileManIOFile.hpp" + +1426246384 /home/loic/Documents/c/forgetIt/IOFileClass/FileManIOFile.hpp + <iostream> + <string> + <fstream> + "HASHCrypt.hpp" + "AESCrypt.hpp" + +1426348265 source:/home/loic/Documents/c/forgetIt/ParserClass/FileManParser.cpp + "FileManParser.hpp" + +1426349024 source:/home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/Website.cpp + "Website.hpp" + +1426348971 /home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/Website.hpp + <string> + <string> + "AbstractIDManager.hpp" + +1426348906 /home/loic/Documents/c/forgetIt/ParserClass/FileManParser.hpp + <iostream> + <sstream> + <string> + <vector> + "Website.hpp" + <cstdlib> + <libxml++/libxml++.h> + +1426310189 source:/home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/FileManContainer.cpp + "FileManContainer.hpp" + +1426310189 /home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/FileManContainer.hpp + <string> + <vector> + <xercesc/parsers/XercesDOMParser.hpp> + <xercesc/dom/DOM.hpp> + <xercesc/framework/MemBufInputSource.hpp> + <xercesc/sax/HandlerBase.hpp> + <xercesc/util/XMLString.hpp> + <xercesc/util/PlatformUtils.hpp> + <xercesc/util/XercesDefs.hpp> + "Website.hpp" + +1426339688 source:/home/loic/Documents/c/forgetIt/ParserClass/AbstractIDManager.cpp + "AbstractIDManager.hpp" + +1426339660 /home/loic/Documents/c/forgetIt/ParserClass/AbstractIDManager.hpp + <string> + <sstream> + <boost/uuid/uuid.hpp> + <boost/uuid/uuid_generators.hpp> + <boost/uuid/uuid_io.hpp> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/node.h + <libxml++/noncopyable.h> + <libxml++/exceptions/exception.h> + <glibmm/ustring.h> + <list> + <map> + <vector> + +1328501009 /usr/include/libxml++-2.6/libxml++/noncopyable.h + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/exception.h + <exception> + <glibmm/ustring.h> + <libxml++config.h> + +1348900853 /usr/include/glibmm-2.4/glibmm/ustring.h + <glibmmconfig.h> + <glibmm/unicode.h> + <glib.h> + <iosfwd> + <iterator> + <sstream> + <string> + <cstddef> + +1348900855 /usr/lib/x86_64-linux-gnu/glibmm-2.4/include/glibmmconfig.h + +1348900853 /usr/include/glibmm-2.4/glibmm/unicode.h + <glib.h> + <cctype> + +1357747352 /usr/include/glib-2.0/glib.h + <glib/galloca.h> + <glib/garray.h> + <glib/gasyncqueue.h> + <glib/gatomic.h> + <glib/gbacktrace.h> + <glib/gbase64.h> + <glib/gbitlock.h> + <glib/gbookmarkfile.h> + <glib/gbytes.h> + <glib/gcharset.h> + <glib/gchecksum.h> + <glib/gconvert.h> + <glib/gdataset.h> + <glib/gdate.h> + <glib/gdatetime.h> + <glib/gdir.h> + <glib/genviron.h> + <glib/gerror.h> + <glib/gfileutils.h> + <glib/ggettext.h> + <glib/ghash.h> + <glib/ghmac.h> + <glib/ghook.h> + <glib/ghostutils.h> + <glib/giochannel.h> + <glib/gkeyfile.h> + <glib/glist.h> + <glib/gmacros.h> + <glib/gmain.h> + <glib/gmappedfile.h> + <glib/gmarkup.h> + <glib/gmem.h> + <glib/gmessages.h> + <glib/gnode.h> + <glib/goption.h> + <glib/gpattern.h> + <glib/gpoll.h> + <glib/gprimes.h> + <glib/gqsort.h> + <glib/gquark.h> + <glib/gqueue.h> + <glib/grand.h> + <glib/gregex.h> + <glib/gscanner.h> + <glib/gsequence.h> + <glib/gshell.h> + <glib/gslice.h> + <glib/gslist.h> + <glib/gspawn.h> + <glib/gstrfuncs.h> + <glib/gstring.h> + <glib/gstringchunk.h> + <glib/gtestutils.h> + <glib/gthread.h> + <glib/gthreadpool.h> + <glib/gtimer.h> + <glib/gtimezone.h> + <glib/gtrashstack.h> + <glib/gtree.h> + <glib/gtypes.h> + <glib/gunicode.h> + <glib/gurifuncs.h> + <glib/gutils.h> + <glib/gvarianttype.h> + <glib/gvariant.h> + <glib/gversion.h> + <glib/gversionmacros.h> + <glib/gwin32.h> + <glib/deprecated/gallocator.h> + <glib/deprecated/gcache.h> + <glib/deprecated/gcompletion.h> + <glib/deprecated/gmain.h> + <glib/deprecated/grel.h> + <glib/deprecated/gthread.h> + +1357747352 /usr/include/glib-2.0/glib/galloca.h + <glib/gtypes.h> + <alloca.h> + <malloc.h> + +1357747352 /usr/include/glib-2.0/glib/gtypes.h + <glibconfig.h> + <glib/gmacros.h> + <glib/gversionmacros.h> + <time.h> + +1357747352 /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h + <glib/gmacros.h> + <limits.h> + <float.h> + +1357747352 /usr/include/glib-2.0/glib/gmacros.h + <stddef.h> + +1357747352 /usr/include/glib-2.0/glib/gversionmacros.h + +1357747352 /usr/include/glib-2.0/glib/garray.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gasyncqueue.h + <glib/gthread.h> + +1357747352 /usr/include/glib-2.0/glib/gthread.h + <glib/gatomic.h> + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gatomic.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gerror.h + <stdarg.h> + <glib/gquark.h> + +1357747352 /usr/include/glib-2.0/glib/gquark.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gbacktrace.h + <glib/gtypes.h> + <signal.h> + +1357747352 /usr/include/glib-2.0/glib/gbase64.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gbitlock.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gbookmarkfile.h + <glib/gerror.h> + <time.h> + +1357747352 /usr/include/glib-2.0/glib/gbytes.h + <glib/gtypes.h> + <glib/garray.h> + +1357747352 /usr/include/glib-2.0/glib/gcharset.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gchecksum.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gconvert.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gdataset.h + <glib/gquark.h> + +1357747352 /usr/include/glib-2.0/glib/gdate.h + <time.h> + <glib/gtypes.h> + <glib/gquark.h> + +1357747352 /usr/include/glib-2.0/glib/gdatetime.h + <glib/gtimezone.h> + +1357747352 /usr/include/glib-2.0/glib/gtimezone.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gdir.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/genviron.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gfileutils.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/ggettext.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/ghash.h + <glib/gtypes.h> + <glib/glist.h> + +1357747352 /usr/include/glib-2.0/glib/glist.h + <glib/gmem.h> + +1357747352 /usr/include/glib-2.0/glib/gmem.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/ghmac.h + <glib/gtypes.h> + "gchecksum.h" + +1357747352 /usr/include/glib-2.0/glib/ghook.h + <glib/gmem.h> + +1357747352 /usr/include/glib-2.0/glib/ghostutils.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/giochannel.h + <glib/gconvert.h> + <glib/gmain.h> + <glib/gstring.h> + +1357747352 /usr/include/glib-2.0/glib/gmain.h + <glib/gpoll.h> + <glib/gslist.h> + <glib/gthread.h> + +1357747352 /usr/include/glib-2.0/glib/gpoll.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gslist.h + <glib/gmem.h> + +1357747352 /usr/include/glib-2.0/glib/gstring.h + <glib/gtypes.h> + <glib/gunicode.h> + <glib/gutils.h> + +1357747352 /usr/include/glib-2.0/glib/gunicode.h + <glib/gerror.h> + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gutils.h + <glib/gtypes.h> + <stdarg.h> + +1357747352 /usr/include/glib-2.0/glib/gkeyfile.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gmappedfile.h + <glib/gbytes.h> + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gmarkup.h + <stdarg.h> + <glib/gerror.h> + <glib/gslist.h> + +1357747352 /usr/include/glib-2.0/glib/gmessages.h + <stdarg.h> + <glib/gtypes.h> + <glib/gmacros.h> + +1357747352 /usr/include/glib-2.0/glib/gnode.h + <glib/gmem.h> + +1357747352 /usr/include/glib-2.0/glib/goption.h + <glib/gerror.h> + <glib/gquark.h> + +1357747352 /usr/include/glib-2.0/glib/gpattern.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gprimes.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gqsort.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gqueue.h + <glib/glist.h> + +1357747352 /usr/include/glib-2.0/glib/grand.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gregex.h + <glib/gerror.h> + <glib/gstring.h> + +1357747352 /usr/include/glib-2.0/glib/gscanner.h + <glib/gdataset.h> + <glib/ghash.h> + +1357747352 /usr/include/glib-2.0/glib/gsequence.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gshell.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gslice.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gspawn.h + <glib/gerror.h> + +1357747352 /usr/include/glib-2.0/glib/gstrfuncs.h + <stdarg.h> + <glib/gmacros.h> + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gstringchunk.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gtestutils.h + <glib/gmessages.h> + <glib/gstring.h> + <glib/gerror.h> + <glib/gslist.h> + +1357747352 /usr/include/glib-2.0/glib/gthreadpool.h + <glib/gthread.h> + +1357747352 /usr/include/glib-2.0/glib/gtimer.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gtrashstack.h + <glib/gutils.h> + +1357747352 /usr/include/glib-2.0/glib/gtree.h + <glib/gnode.h> + +1357747352 /usr/include/glib-2.0/glib/gurifuncs.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gvarianttype.h + <glib/gmessages.h> + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gvariant.h + <glib/gvarianttype.h> + <glib/gstring.h> + +1357747352 /usr/include/glib-2.0/glib/gversion.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/gwin32.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/gallocator.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/gcache.h + <glib/glist.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/gcompletion.h + <glib/glist.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/gmain.h + <glib/gmain.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/grel.h + <glib/gtypes.h> + +1357747352 /usr/include/glib-2.0/glib/deprecated/gthread.h + <glib/gthread.h> + <pthread.h> + +1328501009 /usr/lib/libxml++-2.6/include/libxml++config.h + <glibmmconfig.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/libxml++.h + <libxml++/exceptions/internal_error.h> + <libxml++/exceptions/parse_error.h> + <libxml++/parsers/domparser.h> + <libxml++/parsers/saxparser.h> + <libxml++/parsers/textreader.h> + <libxml++/nodes/node.h> + <libxml++/nodes/commentnode.h> + <libxml++/nodes/element.h> + <libxml++/nodes/entityreference.h> + <libxml++/nodes/textnode.h> + <libxml++/attribute.h> + <libxml++/document.h> + <libxml++/validators/validator.h> + <libxml++/validators/dtdvalidator.h> + <libxml++/validators/schemavalidator.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/internal_error.h + <libxml++/exceptions/exception.h> + <exception> + <glibmm/ustring.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/parse_error.h + <libxml++/exceptions/exception.h> + <exception> + <glibmm/ustring.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/domparser.h + <libxml++/parsers/parser.h> + <libxml++/dtd.h> + <libxml++/document.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/parser.h + <libxml++/nodes/element.h> + <libxml++/exceptions/validity_error.h> + <libxml++/exceptions/internal_error.h> + <istream> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/element.h + <libxml++/nodes/node.h> + <libxml++/attribute.h> + <libxml++/nodes/commentnode.h> + <libxml++/nodes/cdatanode.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/attribute.h + <glibmm/ustring.h> + <libxml++/nodes/node.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/commentnode.h + <libxml++/nodes/contentnode.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/contentnode.h + <libxml++/nodes/node.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/cdatanode.h + <libxml++/nodes/contentnode.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/validity_error.h + <libxml++/exceptions/parse_error.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/dtd.h + <libxml++/attribute.h> + <list> + <map> + +1328501009 /usr/include/libxml++-2.6/libxml++/document.h + <libxml++/exceptions/parse_error.h> + <libxml++/exceptions/internal_error.h> + <libxml++/nodes/element.h> + <libxml++/dtd.h> + <ostream> + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/saxparser.h + <libxml++/parsers/parser.h> + <list> + <deque> + <memory> + "libxml++/document.h" + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/textreader.h + <libxml++/noncopyable.h> + <libxml++/nodes/node.h> + <glibmm/ustring.h> + <memory> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/entityreference.h + <libxml++/nodes/node.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/textnode.h + <libxml++/nodes/contentnode.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/validator.h + <libxml++/nodes/element.h> + <libxml++/exceptions/validity_error.h> + <libxml++/exceptions/internal_error.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/dtdvalidator.h + <libxml++/validators/validator.h> + <libxml++/dtd.h> + <libxml++/document.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/schemavalidator.h + <libxml++/validators/validator.h> + <libxml++/schema.h> + <libxml++/document.h> + +1328501009 /usr/include/libxml++-2.6/libxml++/schema.h + <libxml++/attribute.h> + <libxml++/document.h> + <list> + <map> + +1386191034 /usr/include/gtk-3.0/gtk/gtk.h + <gdk/gdk.h> + <gtk/gtkaboutdialog.h> + <gtk/gtkaccelgroup.h> + <gtk/gtkaccellabel.h> + <gtk/gtkaccelmap.h> + <gtk/gtkaccessible.h> + <gtk/gtkaction.h> + <gtk/gtkactionable.h> + <gtk/gtkactiongroup.h> + <gtk/gtkactivatable.h> + <gtk/gtkadjustment.h> + <gtk/gtkalignment.h> + <gtk/gtkappchooser.h> + <gtk/gtkappchooserdialog.h> + <gtk/gtkappchooserwidget.h> + <gtk/gtkappchooserbutton.h> + <gtk/gtkapplication.h> + <gtk/gtkapplicationwindow.h> + <gtk/gtkarrow.h> + <gtk/gtkaspectframe.h> + <gtk/gtkassistant.h> + <gtk/gtkbbox.h> + <gtk/gtkbin.h> + <gtk/gtkbindings.h> + <gtk/gtkborder.h> + <gtk/gtkbox.h> + <gtk/gtkbuildable.h> + <gtk/gtkbuilder.h> + <gtk/gtkbutton.h> + <gtk/gtkcalendar.h> + <gtk/gtkcellarea.h> + <gtk/gtkcellareabox.h> + <gtk/gtkcellareacontext.h> + <gtk/gtkcelleditable.h> + <gtk/gtkcelllayout.h> + <gtk/gtkcellrenderer.h> + <gtk/gtkcellrendereraccel.h> + <gtk/gtkcellrenderercombo.h> + <gtk/gtkcellrendererpixbuf.h> + <gtk/gtkcellrendererprogress.h> + <gtk/gtkcellrendererspin.h> + <gtk/gtkcellrendererspinner.h> + <gtk/gtkcellrenderertext.h> + <gtk/gtkcellrenderertoggle.h> + <gtk/gtkcellview.h> + <gtk/gtkcheckbutton.h> + <gtk/gtkcheckmenuitem.h> + <gtk/gtkclipboard.h> + <gtk/gtkcolorbutton.h> + <gtk/gtkcolorchooser.h> + <gtk/gtkcolorchooserdialog.h> + <gtk/gtkcolorchooserwidget.h> + <gtk/gtkcolorutils.h> + <gtk/gtkcombobox.h> + <gtk/gtkcomboboxtext.h> + <gtk/gtkcontainer.h> + <gtk/gtkcssprovider.h> + <gtk/gtkcsssection.h> + <gtk/gtkdebug.h> + <gtk/gtkdialog.h> + <gtk/gtkdnd.h> + <gtk/gtkdrawingarea.h> + <gtk/gtkeditable.h> + <gtk/gtkentry.h> + <gtk/gtkentrybuffer.h> + <gtk/gtkentrycompletion.h> + <gtk/gtkenums.h> + <gtk/gtkeventbox.h> + <gtk/gtkexpander.h> + <gtk/gtkfixed.h> + <gtk/gtkfilechooser.h> + <gtk/gtkfilechooserbutton.h> + <gtk/gtkfilechooserdialog.h> + <gtk/gtkfilechooserwidget.h> + <gtk/gtkfilefilter.h> + <gtk/gtkfontbutton.h> + <gtk/gtkfontchooser.h> + <gtk/gtkfontchooserdialog.h> + <gtk/gtkfontchooserwidget.h> + <gtk/gtkframe.h> + <gtk/gtkgradient.h> + <gtk/gtkgrid.h> + <gtk/gtkiconfactory.h> + <gtk/gtkicontheme.h> + <gtk/gtkiconview.h> + <gtk/gtkimage.h> + <gtk/gtkimagemenuitem.h> + <gtk/gtkimcontext.h> + <gtk/gtkimcontextinfo.h> + <gtk/gtkimcontextsimple.h> + <gtk/gtkimmulticontext.h> + <gtk/gtkinfobar.h> + <gtk/gtkinvisible.h> + <gtk/gtklabel.h> + <gtk/gtklayout.h> + <gtk/gtklinkbutton.h> + <gtk/gtkliststore.h> + <gtk/gtklockbutton.h> + <gtk/gtkmain.h> + <gtk/gtkmenu.h> + <gtk/gtkmenubar.h> + <gtk/gtkmenuitem.h> + <gtk/gtkmenushell.h> + <gtk/gtkmenutoolbutton.h> + <gtk/gtkmessagedialog.h> + <gtk/gtkmisc.h> + <gtk/gtkmodules.h> + <gtk/gtkmountoperation.h> + <gtk/gtknotebook.h> + <gtk/gtknumerableicon.h> + <gtk/gtkoffscreenwindow.h> + <gtk/gtkorientable.h> + <gtk/gtkoverlay.h> + <gtk/gtkpagesetup.h> + <gtk/gtkpapersize.h> + <gtk/gtkpaned.h> + <gtk/gtkprintcontext.h> + <gtk/gtkprintoperation.h> + <gtk/gtkprintoperationpreview.h> + <gtk/gtkprintsettings.h> + <gtk/gtkprogressbar.h> + <gtk/gtkradioaction.h> + <gtk/gtkradiobutton.h> + <gtk/gtkradiomenuitem.h> + <gtk/gtkradiotoolbutton.h> + <gtk/gtkrange.h> + <gtk/gtkrecentaction.h> + <gtk/gtkrecentchooser.h> + <gtk/gtkrecentchooserdialog.h> + <gtk/gtkrecentchoosermenu.h> + <gtk/gtkrecentchooserwidget.h> + <gtk/gtkrecentfilter.h> + <gtk/gtkrecentmanager.h> + <gtk/gtkscale.h> + <gtk/gtkscalebutton.h> + <gtk/gtkscrollable.h> + <gtk/gtkscrollbar.h> + <gtk/gtkscrolledwindow.h> + <gtk/gtkselection.h> + <gtk/gtkseparator.h> + <gtk/gtkseparatormenuitem.h> + <gtk/gtkseparatortoolitem.h> + <gtk/gtksettings.h> + <gtk/gtkshow.h> + <gtk/gtksizegroup.h> + <gtk/gtksizerequest.h> + <gtk/gtkspinbutton.h> + <gtk/gtkspinner.h> + <gtk/gtkstatusbar.h> + <gtk/gtkstatusicon.h> + <gtk/gtkstock.h> + <gtk/gtkstylecontext.h> + <gtk/gtkstyleproperties.h> + <gtk/gtkstyleprovider.h> + <gtk/gtkswitch.h> + <gtk/gtksymboliccolor.h> + <gtk/gtktextattributes.h> + <gtk/gtktextbuffer.h> + <gtk/gtktextbufferrichtext.h> + <gtk/gtktextchild.h> + <gtk/gtktextiter.h> + <gtk/gtktextmark.h> + <gtk/gtktexttag.h> + <gtk/gtktexttagtable.h> + <gtk/gtktextview.h> + <gtk/gtkthemingengine.h> + <gtk/gtktoggleaction.h> + <gtk/gtktogglebutton.h> + <gtk/gtktoggletoolbutton.h> + <gtk/gtktoolbar.h> + <gtk/gtktoolbutton.h> + <gtk/gtktoolitem.h> + <gtk/gtktoolitemgroup.h> + <gtk/gtktoolpalette.h> + <gtk/gtktoolshell.h> + <gtk/gtktooltip.h> + <gtk/gtktestutils.h> + <gtk/gtktreednd.h> + <gtk/gtktreemodel.h> + <gtk/gtktreemodelfilter.h> + <gtk/gtktreemodelsort.h> + <gtk/gtktreeselection.h> + <gtk/gtktreesortable.h> + <gtk/gtktreestore.h> + <gtk/gtktreeview.h> + <gtk/gtktreeviewcolumn.h> + <gtk/gtktypebuiltins.h> + <gtk/gtktypes.h> + <gtk/gtkuimanager.h> + <gtk/gtkversion.h> + <gtk/gtkviewport.h> + <gtk/gtkvolumebutton.h> + <gtk/gtkwidget.h> + <gtk/gtkwidgetpath.h> + <gtk/gtkwindow.h> + <gtk/deprecated/gtkcolorsel.h> + <gtk/deprecated/gtkcolorseldialog.h> + <gtk/deprecated/gtkfontsel.h> + <gtk/deprecated/gtkhandlebox.h> + <gtk/deprecated/gtkhbbox.h> + <gtk/deprecated/gtkhbox.h> + <gtk/deprecated/gtkhpaned.h> + <gtk/deprecated/gtkhsv.h> + <gtk/deprecated/gtkhscale.h> + <gtk/deprecated/gtkhscrollbar.h> + <gtk/deprecated/gtkhseparator.h> + <gtk/deprecated/gtkrc.h> + <gtk/deprecated/gtkstyle.h> + <gtk/deprecated/gtktable.h> + <gtk/deprecated/gtktearoffmenuitem.h> + <gtk/deprecated/gtkvbbox.h> + <gtk/deprecated/gtkvbox.h> + <gtk/deprecated/gtkvpaned.h> + <gtk/deprecated/gtkvscale.h> + <gtk/deprecated/gtkvscrollbar.h> + <gtk/deprecated/gtkvseparator.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdk.h + <gdk/gdkconfig.h> + <gdk/gdkversionmacros.h> + <gdk/gdkapplaunchcontext.h> + <gdk/gdkcairo.h> + <gdk/gdkcolor.h> + <gdk/gdkcursor.h> + <gdk/gdkdevice.h> + <gdk/gdkdevicemanager.h> + <gdk/gdkdisplay.h> + <gdk/gdkdisplaymanager.h> + <gdk/gdkdnd.h> + <gdk/gdkenumtypes.h> + <gdk/gdkevents.h> + <gdk/gdkkeys.h> + <gdk/gdkkeysyms.h> + <gdk/gdkmain.h> + <gdk/gdkpango.h> + <gdk/gdkpixbuf.h> + <gdk/gdkproperty.h> + <gdk/gdkrectangle.h> + <gdk/gdkrgba.h> + <gdk/gdkscreen.h> + <gdk/gdkselection.h> + <gdk/gdktestutils.h> + <gdk/gdkthreads.h> + <gdk/gdktypes.h> + <gdk/gdkvisual.h> + <gdk/gdkwindow.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkconfig.h + <glib.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkversionmacros.h + <glib.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h + <gio/gio.h> + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + <gdk/gdkscreen.h> + +1357747355 /usr/include/glib-2.0/gio/gio.h + <gio/giotypes.h> + <gio/gaction.h> + <gio/gactiongroup.h> + <gio/gactiongroupexporter.h> + <gio/gactionmap.h> + <gio/gappinfo.h> + <gio/gapplication.h> + <gio/gapplicationcommandline.h> + <gio/gasyncinitable.h> + <gio/gasyncresult.h> + <gio/gbufferedinputstream.h> + <gio/gbufferedoutputstream.h> + <gio/gcancellable.h> + <gio/gcharsetconverter.h> + <gio/gcontenttype.h> + <gio/gconverter.h> + <gio/gconverterinputstream.h> + <gio/gconverteroutputstream.h> + <gio/gcredentials.h> + <gio/gdatainputstream.h> + <gio/gdataoutputstream.h> + <gio/gdbusaddress.h> + <gio/gdbusauthobserver.h> + <gio/gdbusconnection.h> + <gio/gdbuserror.h> + <gio/gdbusintrospection.h> + <gio/gdbusmessage.h> + <gio/gdbusmethodinvocation.h> + <gio/gdbusnameowning.h> + <gio/gdbusnamewatching.h> + <gio/gdbusproxy.h> + <gio/gdbusserver.h> + <gio/gdbusutils.h> + <gio/gdrive.h> + <gio/gemblemedicon.h> + <gio/gfileattribute.h> + <gio/gfileenumerator.h> + <gio/gfile.h> + <gio/gfileicon.h> + <gio/gfileinfo.h> + <gio/gfileinputstream.h> + <gio/gfileiostream.h> + <gio/gfilemonitor.h> + <gio/gfilenamecompleter.h> + <gio/gfileoutputstream.h> + <gio/gfilterinputstream.h> + <gio/gfilteroutputstream.h> + <gio/gicon.h> + <gio/ginetaddress.h> + <gio/ginetaddressmask.h> + <gio/ginetsocketaddress.h> + <gio/ginitable.h> + <gio/ginputstream.h> + <gio/gioenums.h> + <gio/gioenumtypes.h> + <gio/gioerror.h> + <gio/giomodule.h> + <gio/gioscheduler.h> + <gio/giostream.h> + <gio/gloadableicon.h> + <gio/gmemoryinputstream.h> + <gio/gmemoryoutputstream.h> + <gio/gmount.h> + <gio/gmountoperation.h> + <gio/gnativevolumemonitor.h> + <gio/gnetworkaddress.h> + <gio/gnetworkmonitor.h> + <gio/gnetworkservice.h> + <gio/goutputstream.h> + <gio/gpermission.h> + <gio/gpollableinputstream.h> + <gio/gpollableoutputstream.h> + <gio/gproxy.h> + <gio/gproxyaddress.h> + <gio/gproxyaddressenumerator.h> + <gio/gproxyresolver.h> + <gio/gresolver.h> + <gio/gresource.h> + <gio/gseekable.h> + <gio/gsettingsschema.h> + <gio/gsettings.h> + <gio/gsimpleaction.h> + <gio/gsimpleactiongroup.h> + <gio/gsimpleasyncresult.h> + <gio/gsimplepermission.h> + <gio/gsocketaddressenumerator.h> + <gio/gsocketaddress.h> + <gio/gsocketclient.h> + <gio/gsocketconnectable.h> + <gio/gsocketconnection.h> + <gio/gsocketcontrolmessage.h> + <gio/gsocket.h> + <gio/gsocketlistener.h> + <gio/gsocketservice.h> + <gio/gsrvtarget.h> + <gio/gtcpconnection.h> + <gio/gtcpwrapperconnection.h> + <gio/gthemedicon.h> + <gio/gthreadedsocketservice.h> + <gio/gtlsbackend.h> + <gio/gtlscertificate.h> + <gio/gtlsclientconnection.h> + <gio/gtlsconnection.h> + <gio/gtlsdatabase.h> + <gio/gtlsfiledatabase.h> + <gio/gtlsinteraction.h> + <gio/gtlsserverconnection.h> + <gio/gtlspassword.h> + <gio/gvfs.h> + <gio/gvolume.h> + <gio/gvolumemonitor.h> + <gio/gzlibcompressor.h> + <gio/gzlibdecompressor.h> + <gio/gdbusinterface.h> + <gio/gdbusinterfaceskeleton.h> + <gio/gdbusobject.h> + <gio/gdbusobjectskeleton.h> + <gio/gdbusobjectproxy.h> + <gio/gdbusobjectmanager.h> + <gio/gdbusobjectmanagerclient.h> + <gio/gdbusobjectmanagerserver.h> + <gio/gdbusactiongroup.h> + <gio/gremoteactiongroup.h> + <gio/gmenumodel.h> + <gio/gmenu.h> + <gio/gmenuexporter.h> + <gio/gdbusmenumodel.h> + +1357747355 /usr/include/glib-2.0/gio/giotypes.h + <gio/gioenums.h> + +1357747355 /usr/include/glib-2.0/gio/gioenums.h + <glib-object.h> + +1357747352 /usr/include/glib-2.0/glib-object.h + <gobject/gbinding.h> + <gobject/gboxed.h> + <gobject/genums.h> + <gobject/gobject.h> + <gobject/gparam.h> + <gobject/gparamspecs.h> + <gobject/gsignal.h> + <gobject/gsourceclosure.h> + <gobject/gtype.h> + <gobject/gtypemodule.h> + <gobject/gtypeplugin.h> + <gobject/gvalue.h> + <gobject/gvaluearray.h> + <gobject/gvaluetypes.h> + +1357747353 /usr/include/glib-2.0/gobject/gbinding.h + <glib.h> + <gobject/gobject.h> + +1357747353 /usr/include/glib-2.0/gobject/gobject.h + <gobject/gtype.h> + <gobject/gvalue.h> + <gobject/gparam.h> + <gobject/gclosure.h> + <gobject/gsignal.h> + +1357747353 /usr/include/glib-2.0/gobject/gtype.h + <glib.h> + +1357747353 /usr/include/glib-2.0/gobject/gvalue.h + <gobject/gtype.h> + +1357747353 /usr/include/glib-2.0/gobject/gparam.h + <gobject/gvalue.h> + +1357747353 /usr/include/glib-2.0/gobject/gclosure.h + <gobject/gtype.h> + +1357747353 /usr/include/glib-2.0/gobject/gsignal.h + <gobject/gclosure.h> + <gobject/gvalue.h> + <gobject/gparam.h> + <gobject/gmarshal.h> + +1357747353 /usr/include/glib-2.0/gobject/gmarshal.h + +1357747353 /usr/include/glib-2.0/gobject/gboxed.h + <gobject/gtype.h> + <gobject/glib-types.h> + +1357747353 /usr/include/glib-2.0/gobject/glib-types.h + <glib.h> + +1357747353 /usr/include/glib-2.0/gobject/genums.h + <gobject/gtype.h> + +1357747353 /usr/include/glib-2.0/gobject/gparamspecs.h + <gobject/gvalue.h> + <gobject/genums.h> + <gobject/gboxed.h> + <gobject/gobject.h> + +1357747353 /usr/include/glib-2.0/gobject/gsourceclosure.h + <gobject/gclosure.h> + <gobject/glib-types.h> + +1357747353 /usr/include/glib-2.0/gobject/gtypemodule.h + <gobject/gobject.h> + <gobject/genums.h> + +1357747353 /usr/include/glib-2.0/gobject/gtypeplugin.h + <gobject/gtype.h> + +1357747353 /usr/include/glib-2.0/gobject/gvaluearray.h + <gobject/gvalue.h> + +1357747353 /usr/include/glib-2.0/gobject/gvaluetypes.h + <gobject/gvalue.h> + +1357747355 /usr/include/glib-2.0/gio/gaction.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gactiongroup.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gactiongroupexporter.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gactionmap.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gappinfo.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gapplication.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gapplicationcommandline.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gasyncinitable.h + <gio/giotypes.h> + <gio/ginitable.h> + +1357747355 /usr/include/glib-2.0/gio/ginitable.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gasyncresult.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gbufferedinputstream.h + <gio/gfilterinputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gfilterinputstream.h + <gio/ginputstream.h> + +1357747355 /usr/include/glib-2.0/gio/ginputstream.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gbufferedoutputstream.h + <gio/gfilteroutputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gfilteroutputstream.h + <gio/goutputstream.h> + +1357747355 /usr/include/glib-2.0/gio/goutputstream.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gcancellable.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gcharsetconverter.h + <gio/gconverter.h> + +1357747355 /usr/include/glib-2.0/gio/gconverter.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gcontenttype.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gconverterinputstream.h + <gio/gfilterinputstream.h> + <gio/gconverter.h> + +1357747355 /usr/include/glib-2.0/gio/gconverteroutputstream.h + <gio/gfilteroutputstream.h> + <gio/gconverter.h> + +1357747355 /usr/include/glib-2.0/gio/gcredentials.h + <gio/giotypes.h> + <unistd.h> + <sys/types.h> + +1357747355 /usr/include/glib-2.0/gio/gdatainputstream.h + <gio/gbufferedinputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gdataoutputstream.h + <gio/gfilteroutputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusaddress.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusauthobserver.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusconnection.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbuserror.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusintrospection.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusmessage.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusmethodinvocation.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusnameowning.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusnamewatching.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusproxy.h + <gio/giotypes.h> + <gio/gdbusintrospection.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusserver.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusutils.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdrive.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gemblemedicon.h + <gio/gicon.h> + <gio/gemblem.h> + +1357747355 /usr/include/glib-2.0/gio/gicon.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gemblem.h + <gio/gioenums.h> + +1357747355 /usr/include/glib-2.0/gio/gfileattribute.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfileenumerator.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfile.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfileicon.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfileinfo.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfileinputstream.h + <gio/ginputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gfileiostream.h + <gio/giostream.h> + +1357747355 /usr/include/glib-2.0/gio/giostream.h + <gio/ginputstream.h> + <gio/goutputstream.h> + <gio/gcancellable.h> + <gio/gioerror.h> + +1357747355 /usr/include/glib-2.0/gio/gioerror.h + <glib.h> + <gio/gioenums.h> + +1357747355 /usr/include/glib-2.0/gio/gfilemonitor.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfilenamecompleter.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gfileoutputstream.h + <gio/goutputstream.h> + +1357747355 /usr/include/glib-2.0/gio/ginetaddress.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/ginetaddressmask.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/ginetsocketaddress.h + <gio/gsocketaddress.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketaddress.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gioenumtypes.h + <glib-object.h> + +1357747355 /usr/include/glib-2.0/gio/giomodule.h + <gio/giotypes.h> + <gmodule.h> + +1357747353 /usr/include/glib-2.0/gmodule.h + <glib.h> + +1357747355 /usr/include/glib-2.0/gio/gioscheduler.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gloadableicon.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gmemoryinputstream.h + <gio/ginputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gmemoryoutputstream.h + <gio/goutputstream.h> + +1357747355 /usr/include/glib-2.0/gio/gmount.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gmountoperation.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gnativevolumemonitor.h + <gio/gvolumemonitor.h> + +1357747355 /usr/include/glib-2.0/gio/gvolumemonitor.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gnetworkaddress.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gnetworkmonitor.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gnetworkservice.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gpermission.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gpollableinputstream.h + <gio/gio.h> + +1357747355 /usr/include/glib-2.0/gio/gpollableoutputstream.h + <gio/gio.h> + +1357747355 /usr/include/glib-2.0/gio/gproxy.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gproxyaddress.h + <gio/ginetsocketaddress.h> + +1357747355 /usr/include/glib-2.0/gio/gproxyaddressenumerator.h + <gio/gsocketaddressenumerator.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketaddressenumerator.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gproxyresolver.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gresolver.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gresource.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gseekable.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsettingsschema.h + <glib-object.h> + +1357747355 /usr/include/glib-2.0/gio/gsettings.h + <gio/gsettingsschema.h> + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsimpleaction.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsimpleactiongroup.h + "gactiongroup.h" + "gactionmap.h" + +1357747355 /usr/include/glib-2.0/gio/gsimpleasyncresult.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsimplepermission.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketclient.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketconnectable.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketconnection.h + <glib-object.h> + <gio/gsocket.h> + <gio/giostream.h> + +1357747355 /usr/include/glib-2.0/gio/gsocket.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketcontrolmessage.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketlistener.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gsocketservice.h + <gio/gsocketlistener.h> + +1357747355 /usr/include/glib-2.0/gio/gsrvtarget.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtcpconnection.h + <gio/gsocketconnection.h> + +1357747355 /usr/include/glib-2.0/gio/gtcpwrapperconnection.h + <gio/gtcpconnection.h> + +1357747355 /usr/include/glib-2.0/gio/gthemedicon.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gthreadedsocketservice.h + <gio/gsocketservice.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsbackend.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtlscertificate.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsclientconnection.h + <gio/gtlsconnection.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsconnection.h + <gio/giostream.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsdatabase.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsfiledatabase.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsinteraction.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gtlsserverconnection.h + <gio/gtlsconnection.h> + +1357747355 /usr/include/glib-2.0/gio/gtlspassword.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gvfs.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gvolume.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gzlibcompressor.h + <gio/gconverter.h> + <gio/gfileinfo.h> + +1357747355 /usr/include/glib-2.0/gio/gzlibdecompressor.h + <gio/gconverter.h> + <gio/gfileinfo.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusinterface.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobject.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectskeleton.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectproxy.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanager.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusactiongroup.h + "giotypes.h" + +1357747355 /usr/include/glib-2.0/gio/gremoteactiongroup.h + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gmenumodel.h + <glib-object.h> + <gio/giotypes.h> + +1357747355 /usr/include/glib-2.0/gio/gmenu.h + <gio/gmenumodel.h> + +1357747355 /usr/include/glib-2.0/gio/gmenuexporter.h + <gio/gdbusconnection.h> + <gio/gmenumodel.h> + +1357747355 /usr/include/glib-2.0/gio/gdbusmenumodel.h + <gio/gdbusconnection.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdktypes.h + <glib.h> + <pango/pango.h> + <glib-object.h> + <cairo.h> + <gdk/gdkconfig.h> + +1333224566 /usr/include/pango-1.0/pango/pango.h + <pango/pango-attributes.h> + <pango/pango-bidi-type.h> + <pango/pango-break.h> + <pango/pango-context.h> + <pango/pango-coverage.h> + <pango/pango-engine.h> + <pango/pango-enum-types.h> + <pango/pango-features.h> + <pango/pango-font.h> + <pango/pango-fontmap.h> + <pango/pango-fontset.h> + <pango/pango-glyph.h> + <pango/pango-glyph-item.h> + <pango/pango-gravity.h> + <pango/pango-item.h> + <pango/pango-layout.h> + <pango/pango-matrix.h> + <pango/pango-renderer.h> + <pango/pango-script.h> + <pango/pango-tabs.h> + <pango/pango-types.h> + <pango/pango-utils.h> + +1333224566 /usr/include/pango-1.0/pango/pango-attributes.h + <pango/pango-font.h> + <glib-object.h> + +1333224566 /usr/include/pango-1.0/pango/pango-font.h + <pango/pango-coverage.h> + <pango/pango-types.h> + <glib-object.h> + +1333224566 /usr/include/pango-1.0/pango/pango-coverage.h + <glib.h> + +1333224566 /usr/include/pango-1.0/pango/pango-types.h + <glib.h> + <glib-object.h> + <pango/pango-gravity.h> + <pango/pango-language.h> + <pango/pango-matrix.h> + <pango/pango-script.h> + <pango/pango-bidi-type.h> + +1333224566 /usr/include/pango-1.0/pango/pango-gravity.h + <glib.h> + <pango/pango-matrix.h> + <pango/pango-script.h> + +1333224566 /usr/include/pango-1.0/pango/pango-matrix.h + <glib.h> + <glib-object.h> + <pango/pango-types.h> + +1333224566 /usr/include/pango-1.0/pango/pango-script.h + <glib.h> + <pango/pango-language.h> + +1333224566 /usr/include/pango-1.0/pango/pango-language.h + <glib.h> + <glib-object.h> + <pango/pango-script.h> + +1333224566 /usr/include/pango-1.0/pango/pango-bidi-type.h + <glib.h> + +1333224566 /usr/include/pango-1.0/pango/pango-break.h + <glib.h> + <pango/pango-item.h> + +1333224566 /usr/include/pango-1.0/pango/pango-item.h + <pango/pango-types.h> + +1333224566 /usr/include/pango-1.0/pango/pango-context.h + <pango/pango-font.h> + <pango/pango-fontmap.h> + <pango/pango-attributes.h> + +1333224566 /usr/include/pango-1.0/pango/pango-fontmap.h + <pango/pango-font.h> + <pango/pango-fontset.h> + +1333224566 /usr/include/pango-1.0/pango/pango-fontset.h + <pango/pango-coverage.h> + <pango/pango-types.h> + <glib-object.h> + +1333224566 /usr/include/pango-1.0/pango/pango-engine.h + <pango/pango-types.h> + <pango/pango-item.h> + <pango/pango-font.h> + <pango/pango-glyph.h> + <pango/pango-script.h> + <gmodule.h> + +1333224566 /usr/include/pango-1.0/pango/pango-glyph.h + <pango/pango-types.h> + <pango/pango-item.h> + +1333224566 /usr/include/pango-1.0/pango/pango-enum-types.h + <glib-object.h> + +1333224566 /usr/include/pango-1.0/pango/pango-features.h + +1333224566 /usr/include/pango-1.0/pango/pango-glyph-item.h + <pango/pango-attributes.h> + <pango/pango-break.h> + <pango/pango-item.h> + <pango/pango-glyph.h> + +1333224566 /usr/include/pango-1.0/pango/pango-layout.h + <pango/pango-attributes.h> + <pango/pango-context.h> + <pango/pango-glyph-item.h> + <pango/pango-tabs.h> + +1333224566 /usr/include/pango-1.0/pango/pango-tabs.h + <pango/pango-types.h> + +1333224566 /usr/include/pango-1.0/pango/pango-renderer.h + <pango/pango-layout.h> + +1333224566 /usr/include/pango-1.0/pango/pango-utils.h + <stdio.h> + <glib.h> + <pango/pango-font.h> + +1359646226 /usr/include/cairo/cairo.h + "cairo-version.h" + "cairo-features.h" + "cairo-deprecated.h" + +1359646226 /usr/include/cairo/cairo-version.h + +1359646226 /usr/include/cairo/cairo-features.h + +1359646226 /usr/include/cairo/cairo-deprecated.h + +1386191031 /usr/include/gtk-3.0/gdk/gdkscreen.h + <cairo.h> + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + <gdk/gdkdisplay.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkdisplay.h + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + <gdk/gdkevents.h> + <gdk/gdkdevicemanager.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkevents.h + <gdk/gdkversionmacros.h> + <gdk/gdkcolor.h> + <gdk/gdktypes.h> + <gdk/gdkdnd.h> + <gdk/gdkdevice.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkcolor.h + <cairo.h> + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkdnd.h + <gdk/gdktypes.h> + <gdk/gdkdevice.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkdevice.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkdevicemanager.h + <gdk/gdktypes.h> + <gdk/gdkdevice.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkcairo.h + <gdk/gdkversionmacros.h> + <gdk/gdkcolor.h> + <gdk/gdkrgba.h> + <gdk/gdkpixbuf.h> + <pango/pangocairo.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkrgba.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkpixbuf.h + <cairo.h> + <gdk/gdktypes.h> + <gdk-pixbuf/gdk-pixbuf.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h + <glib.h> + <gdk-pixbuf/gdk-pixbuf-features.h> + <glib-object.h> + <gdk-pixbuf/gdk-pixbuf-core.h> + <gdk-pixbuf/gdk-pixbuf-transform.h> + <gdk-pixbuf/gdk-pixbuf-animation.h> + <gdk-pixbuf/gdk-pixbuf-simple-anim.h> + <gdk-pixbuf/gdk-pixbuf-io.h> + <gdk-pixbuf/gdk-pixbuf-loader.h> + <gdk-pixbuf/gdk-pixbuf-enum-types.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h + <glib.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h + <glib.h> + <glib-object.h> + <gio/gio.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h + <glib.h> + <gdk-pixbuf/gdk-pixbuf-core.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h + <glib-object.h> + <gdk-pixbuf/gdk-pixbuf-core.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h + <gdk-pixbuf/gdk-pixbuf-animation.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h + <stdio.h> + <glib.h> + <gmodule.h> + <gdk-pixbuf/gdk-pixbuf-core.h> + <gdk-pixbuf/gdk-pixbuf-animation.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h + <glib.h> + <glib-object.h> + <gdk-pixbuf/gdk-pixbuf-core.h> + <gdk-pixbuf/gdk-pixbuf-animation.h> + <gdk-pixbuf/gdk-pixbuf-io.h> + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h + <glib-object.h> + +1333224566 /usr/include/pango-1.0/pango/pangocairo.h + <pango/pango.h> + <cairo.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkcursor.h + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + <gdk-pixbuf/gdk-pixbuf.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h + <gdk/gdktypes.h> + <gdk/gdkdisplay.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkenumtypes.h + <glib-object.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkkeys.h + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkkeysyms.h + +1386191031 /usr/include/gtk-3.0/gdk/gdkmain.h + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkpango.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkproperty.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkrectangle.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkselection.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdktestutils.h + <gdk/gdkwindow.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkwindow.h + <gdk/gdkversionmacros.h> + <gdk/gdktypes.h> + <gdk/gdkevents.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkthreads.h + <gdk/gdktypes.h> + +1386191031 /usr/include/gtk-3.0/gdk/gdkvisual.h + <gdk/gdktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaboutdialog.h + <gtk/gtkdialog.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkdialog.h + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkwindow.h + <gtk/gtkapplication.h> + <gtk/gtkaccelgroup.h> + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkapplication.h + <gtk/gtkwidget.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkwidget.h + <gdk/gdk.h> + <gtk/gtkaccelgroup.h> + <gtk/gtkborder.h> + <gtk/gtktypes.h> + <atk/atk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccelgroup.h + <gdk/gdk.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkenums.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkborder.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktypes.h + +1333329226 /usr/include/atk-1.0/atk/atk.h + <atk/atkobject.h> + <atk/atkaction.h> + <atk/atkcomponent.h> + <atk/atkdocument.h> + <atk/atkeditabletext.h> + <atk/atkgobjectaccessible.h> + <atk/atkhyperlink.h> + <atk/atkhyperlinkimpl.h> + <atk/atkhypertext.h> + <atk/atkimage.h> + <atk/atknoopobject.h> + <atk/atknoopobjectfactory.h> + <atk/atkobjectfactory.h> + <atk/atkplug.h> + <atk/atkregistry.h> + <atk/atkrelation.h> + <atk/atkrelationset.h> + <atk/atkrelationtype.h> + <atk/atkselection.h> + <atk/atksocket.h> + <atk/atkstate.h> + <atk/atkstateset.h> + <atk/atkstreamablecontent.h> + <atk/atktable.h> + <atk/atktext.h> + <atk/atkutil.h> + <atk/atkmisc.h> + <atk/atkvalue.h> + <atk/atkwindow.h> + +1333329226 /usr/include/atk-1.0/atk/atkobject.h + <glib-object.h> + <atk/atkstate.h> + <atk/atkrelationtype.h> + +1333329226 /usr/include/atk-1.0/atk/atkstate.h + <glib-object.h> + +1333329226 /usr/include/atk-1.0/atk/atkrelationtype.h + <glib.h> + +1333329226 /usr/include/atk-1.0/atk/atkaction.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atkcomponent.h + <atk/atkobject.h> + <atk/atkutil.h> + +1333329226 /usr/include/atk-1.0/atk/atkutil.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atkdocument.h + <atk/atkobject.h> + <atk/atkutil.h> + +1333329226 /usr/include/atk-1.0/atk/atkeditabletext.h + <atk/atkobject.h> + <atk/atktext.h> + +1333329226 /usr/include/atk-1.0/atk/atktext.h + <glib-object.h> + <atk/atkobject.h> + <atk/atkutil.h> + +1333329226 /usr/include/atk-1.0/atk/atkgobjectaccessible.h + <atk/atk.h> + +1333329226 /usr/include/atk-1.0/atk/atkhyperlink.h + <atk/atkaction.h> + +1333329226 /usr/include/atk-1.0/atk/atkhyperlinkimpl.h + <atk/atkobject.h> + <atk/atkhyperlink.h> + +1333329226 /usr/include/atk-1.0/atk/atkhypertext.h + <atk/atkobject.h> + <atk/atkhyperlink.h> + +1333329226 /usr/include/atk-1.0/atk/atkimage.h + <atk/atkobject.h> + <atk/atkutil.h> + +1333329226 /usr/include/atk-1.0/atk/atknoopobject.h + +1333329226 /usr/include/atk-1.0/atk/atknoopobjectfactory.h + <atk/atkobjectfactory.h> + +1333329226 /usr/include/atk-1.0/atk/atkobjectfactory.h + <glib-object.h> + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atkplug.h + +1333329226 /usr/include/atk-1.0/atk/atkregistry.h + <glib-object.h> + "atkobjectfactory.h" + +1333329226 /usr/include/atk-1.0/atk/atkrelation.h + <glib-object.h> + <atk/atkrelationtype.h> + +1333329226 /usr/include/atk-1.0/atk/atkrelationset.h + <glib-object.h> + <atk/atkobject.h> + <atk/atkrelation.h> + +1333329226 /usr/include/atk-1.0/atk/atkselection.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atksocket.h + +1333329226 /usr/include/atk-1.0/atk/atkstateset.h + <glib-object.h> + <atk/atkobject.h> + <atk/atkstate.h> + +1333329226 /usr/include/atk-1.0/atk/atkstreamablecontent.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atktable.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atkmisc.h + <glib-object.h> + +1333329226 /usr/include/atk-1.0/atk/atkvalue.h + <atk/atkobject.h> + +1333329226 /usr/include/atk-1.0/atk/atkwindow.h + <atk/atkobject.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbin.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcontainer.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccellabel.h + <gtk/gtklabel.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtklabel.h + <gtk/gtkmisc.h> + <gtk/gtkwindow.h> + <gtk/gtkmenu.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmisc.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenu.h + <gtk/gtkaccelgroup.h> + <gtk/gtkmenushell.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenushell.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccelmap.h + <gtk/gtkaccelgroup.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccessible.h + <atk/atk.h> + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaction.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkactionable.h + <glib-object.h> + <gdk/gdk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkactiongroup.h + <gtk/gtkaction.h> + <gtk/gtkstock.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstock.h + <gdk/gdk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkactivatable.h + <gtk/gtkaction.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkadjustment.h + <gdk/gdk.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkalignment.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooser.h + <glib.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h + <gtk/gtkdialog.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h + <gtk/gtkbox.h> + <gtk/gtkmenu.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbox.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h + <gtk/gtkcombobox.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcombobox.h + <gtk/gtkbin.h> + <gtk/gtktreemodel.h> + <gtk/gtktreeview.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodel.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeview.h + <gtk/gtkcontainer.h> + <gtk/gtktreemodel.h> + <gtk/gtktreeviewcolumn.h> + <gtk/gtkdnd.h> + <gtk/gtkentry.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h + <gtk/gtkcellrenderer.h> + <gtk/gtktreemodel.h> + <gtk/gtktreesortable.h> + <gtk/gtkcellarea.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderer.h + <gtk/gtkcelleditable.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcelleditable.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreesortable.h + <gtk/gtkenums.h> + <gtk/gtktreemodel.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellarea.h + <gtk/gtkcellrenderer.h> + <gtk/gtkwidget.h> + <gtk/gtktreemodel.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkdnd.h + <gtk/gtkwidget.h> + <gtk/gtkselection.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkselection.h + <gtk/gtkwidget.h> + <gtk/gtktextiter.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextiter.h + <gtk/gtktextattributes.h> + <gtk/gtktextchild.h> + <gtk/gtktexttag.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextattributes.h + <gdk/gdk.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextchild.h + <gdk/gdk.h> + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktexttag.h + <gdk/gdk.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkentry.h + <gtk/gtkeditable.h> + <gtk/gtkimcontext.h> + <gtk/gtkmenu.h> + <gtk/gtkentrybuffer.h> + <gtk/gtkentrycompletion.h> + <gtk/gtkimage.h> + <gtk/gtkselection.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkeditable.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontext.h + <gdk/gdk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkentrybuffer.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkentrycompletion.h + <gtk/gtktreemodel.h> + <gtk/gtkliststore.h> + <gtk/gtkcellarea.h> + <gtk/gtktreeviewcolumn.h> + <gtk/gtktreemodelfilter.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkliststore.h + <gtk/gtktreemodel.h> + <gtk/gtktreesortable.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h + <gtk/gtktreemodel.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimage.h + <gio/gio.h> + <gtk/gtkmisc.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkarrow.h + <gtk/gtkmisc.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkaspectframe.h + <gtk/gtkframe.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkframe.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkassistant.h + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbbox.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbindings.h + <gdk/gdk.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbuildable.h + <gtk/gtkbuilder.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbuilder.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkbutton.h + <gtk/gtkbin.h> + <gtk/gtkimage.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcalendar.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellareabox.h + <gtk/gtkcellarea.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellareacontext.h + <gtk/gtkcellarea.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcelllayout.h + <gtk/gtkcellrenderer.h> + <gtk/gtkcellarea.h> + <gtk/gtkbuildable.h> + <gtk/gtkbuilder.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h + <gtk/gtkcellrenderertext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h + <gtk/gtkcellrenderer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h + <gtk/gtktreemodel.h> + <gtk/gtkcellrenderertext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h + <gtk/gtkcellrenderer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h + <gtk/gtkcellrenderer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h + <gtk/gtkcellrenderertext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h + <gtk/gtkcellrenderer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h + <gtk/gtkcellrenderer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellview.h + <gtk/gtkwidget.h> + <gtk/gtkcellrenderer.h> + <gtk/gtkcellarea.h> + <gtk/gtkcellareacontext.h> + <gtk/gtktreemodel.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcheckbutton.h + <gtk/gtktogglebutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktogglebutton.h + <gtk/gtkbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h + <gtk/gtkmenuitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenuitem.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkclipboard.h + <gtk/gtkselection.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorbutton.h + <gtk/gtkbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooser.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h + <gtk/gtkdialog.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorutils.h + <glib.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h + <gtk/gtkcombobox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcssprovider.h + <gio/gio.h> + <gtk/gtkcsssection.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkcsssection.h + <gio/gio.h> + <gdk/gdk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkdebug.h + <glib.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkdrawingarea.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkeventbox.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkexpander.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfixed.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooser.h + <gtk/gtkfilefilter.h> + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilefilter.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h + <gtk/gtkbox.h> + <gtk/gtkfilechooser.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h + <gtk/gtkdialog.h> + <gtk/gtkfilechooser.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h + <gtk/gtkfilechooser.h> + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontbutton.h + <gtk/gtkbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooser.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h + <gtk/gtkdialog.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkgradient.h + <gdk/gdk.h> + <gtk/gtkstylecontext.h> + <gtk/gtkstyleproperties.h> + <gtk/gtksymboliccolor.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstylecontext.h + <gtk/gtkborder.h> + <gtk/gtkcsssection.h> + <gtk/gtkstyleprovider.h> + <gtk/gtktypes.h> + <atk/atk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstyleprovider.h + <glib-object.h> + <gtk/gtkenums.h> + <gtk/gtkiconfactory.h> + <gtk/gtkstyleproperties.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkiconfactory.h + <gdk/gdk.h> + <gtk/gtkenums.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstyleproperties.h + <glib-object.h> + <gdk/gdk.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtksymboliccolor.h + <gdk/gdk.h> + <gtk/gtkstyleproperties.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkgrid.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkicontheme.h + <gdk-pixbuf/gdk-pixbuf.h> + <gdk/gdk.h> + <gtk/gtkstylecontext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkiconview.h + <gtk/gtkcontainer.h> + <gtk/gtktreemodel.h> + <gtk/gtkcellrenderer.h> + <gtk/gtkcellarea.h> + <gtk/gtkselection.h> + <gtk/gtktooltip.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktooltip.h + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimagemenuitem.h + <gtk/gtkmenuitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h + <glib.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h + <gtk/gtkimcontext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkimmulticontext.h + <gtk/gtkimcontext.h> + <gtk/gtkmenushell.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkinfobar.h + <gtk/gtkbox.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkinvisible.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtklayout.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtklinkbutton.h + <gtk/gtkbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtklockbutton.h + <gtk/gtkbutton.h> + <gio/gio.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmain.h + <gdk/gdk.h> + <gtk/gtkwidget.h> + <gtk/gtkbox.h> + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenubar.h + <gtk/gtkmenushell.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h + <gtk/gtkmenu.h> + <gtk/gtktoolbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolbutton.h + <gtk/gtktoolitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolitem.h + <gtk/gtkbin.h> + <gtk/gtkmenuitem.h> + <gtk/gtksizegroup.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtksizegroup.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmessagedialog.h + <gtk/gtkdialog.h> + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmodules.h + <gdk/gdk.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkmountoperation.h + +1386191034 /usr/include/gtk-3.0/gtk/gtknotebook.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtknumerableicon.h + <gio/gio.h> + <gtk/gtkstylecontext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h + <gtk/gtkwindow.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkorientable.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkoverlay.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkpagesetup.h + <gtk/gtkpapersize.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkpapersize.h + <gtk/gtkenums.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkpaned.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintcontext.h + <pango/pango.h> + <gtk/gtkpagesetup.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintoperation.h + <cairo.h> + <gtk/gtkmain.h> + <gtk/gtkwindow.h> + <gtk/gtkpagesetup.h> + <gtk/gtkprintsettings.h> + <gtk/gtkprintcontext.h> + <gtk/gtkprintoperationpreview.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintsettings.h + <gtk/gtkpapersize.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h + <cairo.h> + <gtk/gtkprintcontext.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkprogressbar.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkradioaction.h + <gtk/gtktoggleaction.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoggleaction.h + <gtk/gtkaction.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiobutton.h + <gtk/gtkcheckbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h + <gtk/gtkcheckmenuitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h + <gtk/gtktoggletoolbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h + <gtk/gtktoolbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrange.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentaction.h + <gtk/gtkaction.h> + <gtk/gtkrecentmanager.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentmanager.h + <gdk-pixbuf/gdk-pixbuf.h> + <gdk/gdk.h> + <time.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooser.h + <gtk/gtkwidget.h> + <gtk/gtkrecentmanager.h> + <gtk/gtkrecentfilter.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentfilter.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h + <gtk/gtkdialog.h> + <gtk/gtkrecentchooser.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h + <gtk/gtkmenu.h> + <gtk/gtkrecentchooser.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h + <gtk/gtkrecentchooser.h> + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkscale.h + <gtk/gtkrange.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkscalebutton.h + <gtk/gtkbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrollable.h + <gtk/gtkenums.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrollbar.h + <gtk/gtkrange.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparator.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h + <gtk/gtkmenuitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h + <gtk/gtktoolitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtksettings.h + <gdk/gdk.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkshow.h + +1386191034 /usr/include/gtk-3.0/gtk/gtksizerequest.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkspinbutton.h + <gtk/gtkentry.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkspinner.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstatusbar.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkstatusicon.h + <gtk/gtkimage.h> + <gtk/gtkmenu.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkswitch.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextbuffer.h + <gtk/gtkwidget.h> + <gtk/gtkclipboard.h> + <gtk/gtktexttagtable.h> + <gtk/gtktextiter.h> + <gtk/gtktextmark.h> + <gtk/gtktextchild.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktexttagtable.h + <gtk/gtktexttag.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextmark.h + +1386191034 /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h + <gtk/gtktextbuffer.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktextview.h + <gtk/gtkcontainer.h> + <gtk/gtkimcontext.h> + <gtk/gtktextbuffer.h> + <gtk/gtkmenu.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkthemingengine.h + <glib-object.h> + <cairo.h> + <gtk/gtkborder.h> + <gtk/gtkenums.h> + <gtk/gtkstyleproperties.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolbar.h + <gtk/gtkcontainer.h> + <gtk/gtktoolitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h + <gtk/gtkcontainer.h> + <gtk/gtktoolitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolpalette.h + <gtk/gtkcontainer.h> + <gtk/gtkdnd.h> + <gtk/gtktoolitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolshell.h + <gtk/gtkenums.h> + <pango/pango.h> + <gtk/gtksizegroup.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktestutils.h + <gtk/gtkwidget.h> + <gtk/gtkspinbutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreednd.h + <gtk/gtktreemodel.h> + <gtk/gtkdnd.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodelsort.h + <gdk/gdk.h> + <gtk/gtktreemodel.h> + <gtk/gtktreesortable.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeselection.h + <gtk/gtktreeview.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktreestore.h + <gdk/gdk.h> + <gtk/gtktreemodel.h> + <gtk/gtktreesortable.h> + <stdarg.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtktypebuiltins.h + <glib-object.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkuimanager.h + <gtk/gtkaccelgroup.h> + <gtk/gtkwidget.h> + <gtk/gtkaction.h> + <gtk/gtkactiongroup.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkversion.h + +1386191034 /usr/include/gtk-3.0/gtk/gtkviewport.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkvolumebutton.h + <gtk/gtkscalebutton.h> + +1386191034 /usr/include/gtk-3.0/gtk/gtkwidgetpath.h + <glib-object.h> + <gdk/gdk.h> + <gtk/gtkenums.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h + <gtk/gtkdialog.h> + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h + <gtk/gtkdialog.h> + <gtk/deprecated/gtkcolorsel.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h + <gtk/gtkdialog.h> + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h + <gtk/gtkbin.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h + <gtk/gtkbbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h + <gtk/gtkpaned.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h + <gtk/gtkscale.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h + <gtk/gtkscrollbar.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h + <gtk/gtkseparator.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h + <gtk/gtkwidget.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h + <gdk/gdk.h> + <gtk/gtkenums.h> + <gtk/gtktypes.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtktable.h + <gtk/gtkcontainer.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h + <gtk/gtkmenuitem.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h + <gtk/gtkbbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h + <gtk/gtkbox.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h + <gtk/gtkpaned.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h + <gtk/gtkscale.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h + <gtk/gtkscrollbar.h> + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h + <gtk/gtkseparator.h> + +1426245655 source:/home/loic/Documents/c/forgetIt/src/CryptClass/AESCrypt.cpp + "AESCrypt.hpp" + +1426245515 /home/loic/Documents/c/forgetIt/src/CryptClass/AESCrypt.hpp + "AbstractSKA.hpp" + "HASHCrypt.hpp" + <iostream> + <crypto++/aes.h> + <crypto++/modes.h> + <crypto++/filters.h> + +1426244841 /home/loic/Documents/c/forgetIt/src/CryptClass/AbstractSKA.hpp + <string> + +1426244841 /home/loic/Documents/c/forgetIt/src/CryptClass/HASHCrypt.hpp + <iostream> + <string> + <sstream> + <crypto++/md5.h> + <crypto++/hex.h> + <crypto++/sha.h> + +1426244841 source:/home/loic/Documents/c/forgetIt/src/CryptClass/HASHCrypt.cpp + "HASHCrypt.hpp" + +1426789990 source:/home/loic/Documents/c/forgetIt/src/IOFileClass/FileManIOFile.cpp + "FileManIOFile.hpp" + +1426246384 /home/loic/Documents/c/forgetIt/src/IOFileClass/FileManIOFile.hpp + <iostream> + <string> + <fstream> + "HASHCrypt.hpp" + "AESCrypt.hpp" + +1426339688 source:/home/loic/Documents/c/forgetIt/src/ParserClass/AbstractIDManager.cpp + "AbstractIDManager.hpp" + +1426339660 /home/loic/Documents/c/forgetIt/src/ParserClass/AbstractIDManager.hpp + <string> + <sstream> + <boost/uuid/uuid.hpp> + <boost/uuid/uuid_generators.hpp> + <boost/uuid/uuid_io.hpp> + +1426349024 source:/home/loic/Documents/c/forgetIt/src/ParserClass/FileManContainer/Website.cpp + "Website.hpp" + +1426348971 /home/loic/Documents/c/forgetIt/src/ParserClass/FileManContainer/Website.hpp + <string> + <string> + "AbstractIDManager.hpp" + +1426348265 source:/home/loic/Documents/c/forgetIt/src/ParserClass/FileManParser.cpp + "FileManParser.hpp" + +1426348906 /home/loic/Documents/c/forgetIt/src/ParserClass/FileManParser.hpp + <iostream> + <sstream> + <string> + <vector> + "Website.hpp" + <cstdlib> + <libxml++/libxml++.h> + +1426411468 source:/home/loic/Documents/c/forgetIt/src/main.cpp + <iostream> + <string> + <vector> + "FileManIOFile.hpp" + "FileManParser.hpp" + "Website.hpp" + <gtk/gtk.h> + diff --git a/Untracked/forgetIt.layout b/Untracked/forgetIt.layout new file mode 100644 index 0000000..9ed4cc6 --- /dev/null +++ b/Untracked/forgetIt.layout @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <ActiveTarget name="Debug" /> + <File name="../src/main.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="235" topLine="6" /> + </Cursor> + </File> + <File name="../src/CryptClass/HASHCrypt.hpp" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="347" topLine="0" /> + </Cursor> + </File> + <File name="../src/ParserClass/AbstractIDManager.hpp" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="358" topLine="0" /> + </Cursor> + </File> +</CodeBlocks_layout_file> diff --git a/Untracked/lkmjhezfml b/Untracked/lkmjhezfml new file mode 100644 index 0000000..1e9c691 --- /dev/null +++ b/Untracked/lkmjhezfml @@ -0,0 +1,25 @@ +CXX=/usr/bin/i686-w64-mingw32-g++ -lmingw32 + +CXXFLAGS=-I /usr/include/i386-linux-gnu/ -I /usr/include -I CryptClass/ -I IOFileClass -I ParserClass -I ParserClass/FileManContainer -I /usr/include/libxml++-2.6/ -I /usr/include/glibmm-2.4/ -I /usr/lib/x86_64-linux-gnu/glibmm-2.4/include/ -I /usr/include/glib-2.0/ -I /usr/lib/x86_64-linux-gnu/glib-2.0/include/ -I /usr/lib/libxml++-2.6/include/ -I /usr/include/gtk-3.0/ -I /usr/include/pango-1.0/ -I /usr/include/cairo/ -I /usr/include/gdk-pixbuf-2.0/ -I /usr/include/atk-1.0/ + +EXEC=forgetIt + +all: $(EXEC) + +$(EXEC): main.o AESCrypt.o HASHCrypt.o FileManIOFile.o FileManParser.o AbstractIDManager.o Website.o + $(CXX) -o $(EXEC) $^ $(CXXFLAGS) + + +AESCrypt.o: CryptClass/AESCrypt.cpp CryptClass/AESCrypt.hpp + $(CXX) -c $^ $(CXXFLAGS) +HASHCrypt.o: CryptClass/HASHCrypt.cpp CryptClass/HASHCrypt.hpp + $(CXX) -c $^ $(CXXFLAGS) +FileManIOFile.o: IOFileClass/FileManIOFile.cpp IOFileClass/FileManIOFile.hpp + $(CXX) -c $^ $(CXXFLAGS) + + + +.PHONY: clean + +clean: + rm -f *.o diff --git a/Untracked/obj/Debug/CryptClass/AESCrypt.o b/Untracked/obj/Debug/CryptClass/AESCrypt.o Binary files differnew file mode 100644 index 0000000..ef6f1e1 --- /dev/null +++ b/Untracked/obj/Debug/CryptClass/AESCrypt.o diff --git a/Untracked/obj/Debug/CryptClass/HASHCrypt.o b/Untracked/obj/Debug/CryptClass/HASHCrypt.o Binary files differnew file mode 100644 index 0000000..3e4d6e8 --- /dev/null +++ b/Untracked/obj/Debug/CryptClass/HASHCrypt.o diff --git a/Untracked/obj/Debug/IOFileClass/FileManIOFile.o b/Untracked/obj/Debug/IOFileClass/FileManIOFile.o Binary files differnew file mode 100644 index 0000000..a09c323 --- /dev/null +++ b/Untracked/obj/Debug/IOFileClass/FileManIOFile.o diff --git a/Untracked/obj/Debug/ParserClass/AbstractContainer.o b/Untracked/obj/Debug/ParserClass/AbstractContainer.o Binary files differnew file mode 100644 index 0000000..bd03529 --- /dev/null +++ b/Untracked/obj/Debug/ParserClass/AbstractContainer.o diff --git a/Untracked/obj/Debug/ParserClass/AbstractIDManager.o b/Untracked/obj/Debug/ParserClass/AbstractIDManager.o Binary files differnew file mode 100644 index 0000000..9db6000 --- /dev/null +++ b/Untracked/obj/Debug/ParserClass/AbstractIDManager.o diff --git a/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o b/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o Binary files differnew file mode 100644 index 0000000..9a0430b --- /dev/null +++ b/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o diff --git a/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o b/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o Binary files differnew file mode 100644 index 0000000..956cdbe --- /dev/null +++ b/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o diff --git a/Untracked/obj/Debug/ParserClass/FileManParser.o b/Untracked/obj/Debug/ParserClass/FileManParser.o Binary files differnew file mode 100644 index 0000000..f224850 --- /dev/null +++ b/Untracked/obj/Debug/ParserClass/FileManParser.o diff --git a/Untracked/obj/Debug/crypto++/AESCrypt.o b/Untracked/obj/Debug/crypto++/AESCrypt.o Binary files differnew file mode 100644 index 0000000..30db994 --- /dev/null +++ b/Untracked/obj/Debug/crypto++/AESCrypt.o diff --git a/Untracked/obj/Debug/crypto++/HASHCrypt.o b/Untracked/obj/Debug/crypto++/HASHCrypt.o Binary files differnew file mode 100644 index 0000000..7c82f7e --- /dev/null +++ b/Untracked/obj/Debug/crypto++/HASHCrypt.o diff --git a/Untracked/obj/Debug/crypto++/MD5Crypt.o b/Untracked/obj/Debug/crypto++/MD5Crypt.o Binary files differnew file mode 100644 index 0000000..f75d41c --- /dev/null +++ b/Untracked/obj/Debug/crypto++/MD5Crypt.o diff --git a/Untracked/obj/Debug/libs/crypto++/3way.o b/Untracked/obj/Debug/libs/crypto++/3way.o Binary files differnew file mode 100644 index 0000000..017161f --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/3way.o diff --git a/Untracked/obj/Debug/libs/crypto++/adler32.o b/Untracked/obj/Debug/libs/crypto++/adler32.o Binary files differnew file mode 100644 index 0000000..303d08e --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/adler32.o diff --git a/Untracked/obj/Debug/libs/crypto++/algebra.o b/Untracked/obj/Debug/libs/crypto++/algebra.o Binary files differnew file mode 100644 index 0000000..c48afd2 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/algebra.o diff --git a/Untracked/obj/Debug/libs/crypto++/algparam.o b/Untracked/obj/Debug/libs/crypto++/algparam.o Binary files differnew file mode 100644 index 0000000..b986b3e --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/algparam.o diff --git a/Untracked/obj/Debug/libs/crypto++/arc4.o b/Untracked/obj/Debug/libs/crypto++/arc4.o Binary files differnew file mode 100644 index 0000000..5db17ff --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/arc4.o diff --git a/Untracked/obj/Debug/libs/crypto++/asn.o b/Untracked/obj/Debug/libs/crypto++/asn.o Binary files differnew file mode 100644 index 0000000..a0bd264 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/asn.o diff --git a/Untracked/obj/Debug/libs/crypto++/authenc.o b/Untracked/obj/Debug/libs/crypto++/authenc.o Binary files differnew file mode 100644 index 0000000..274bbe7 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/authenc.o diff --git a/Untracked/obj/Debug/libs/crypto++/base32.o b/Untracked/obj/Debug/libs/crypto++/base32.o Binary files differnew file mode 100644 index 0000000..ee6ab71 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/base32.o diff --git a/Untracked/obj/Debug/libs/crypto++/base64.o b/Untracked/obj/Debug/libs/crypto++/base64.o Binary files differnew file mode 100644 index 0000000..a87ef19 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/base64.o diff --git a/Untracked/obj/Debug/libs/crypto++/basecode.o b/Untracked/obj/Debug/libs/crypto++/basecode.o Binary files differnew file mode 100644 index 0000000..578c836 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/basecode.o diff --git a/Untracked/obj/Debug/libs/crypto++/bench.o b/Untracked/obj/Debug/libs/crypto++/bench.o Binary files differnew file mode 100644 index 0000000..218cc28 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/bench.o diff --git a/Untracked/obj/Debug/libs/crypto++/bench2.o b/Untracked/obj/Debug/libs/crypto++/bench2.o Binary files differnew file mode 100644 index 0000000..d74c84b --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/bench2.o diff --git a/Untracked/obj/Debug/libs/crypto++/bfinit.o b/Untracked/obj/Debug/libs/crypto++/bfinit.o Binary files differnew file mode 100644 index 0000000..b5bba86 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/bfinit.o diff --git a/Untracked/obj/Debug/libs/crypto++/blowfish.o b/Untracked/obj/Debug/libs/crypto++/blowfish.o Binary files differnew file mode 100644 index 0000000..f1a0fa7 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/blowfish.o diff --git a/Untracked/obj/Debug/libs/crypto++/blumshub.o b/Untracked/obj/Debug/libs/crypto++/blumshub.o Binary files differnew file mode 100644 index 0000000..06504e4 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/blumshub.o diff --git a/Untracked/obj/Debug/libs/crypto++/camellia.o b/Untracked/obj/Debug/libs/crypto++/camellia.o Binary files differnew file mode 100644 index 0000000..6859993 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/camellia.o diff --git a/Untracked/obj/Debug/libs/crypto++/cast.o b/Untracked/obj/Debug/libs/crypto++/cast.o Binary files differnew file mode 100644 index 0000000..a8407c8 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cast.o diff --git a/Untracked/obj/Debug/libs/crypto++/casts.o b/Untracked/obj/Debug/libs/crypto++/casts.o Binary files differnew file mode 100644 index 0000000..e08c139 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/casts.o diff --git a/Untracked/obj/Debug/libs/crypto++/cbcmac.o b/Untracked/obj/Debug/libs/crypto++/cbcmac.o Binary files differnew file mode 100644 index 0000000..4dfc6c7 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cbcmac.o diff --git a/Untracked/obj/Debug/libs/crypto++/ccm.o b/Untracked/obj/Debug/libs/crypto++/ccm.o Binary files differnew file mode 100644 index 0000000..b8a6a62 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/ccm.o diff --git a/Untracked/obj/Debug/libs/crypto++/channels.o b/Untracked/obj/Debug/libs/crypto++/channels.o Binary files differnew file mode 100644 index 0000000..d3481fb --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/channels.o diff --git a/Untracked/obj/Debug/libs/crypto++/cmac.o b/Untracked/obj/Debug/libs/crypto++/cmac.o Binary files differnew file mode 100644 index 0000000..231641f --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cmac.o diff --git a/Untracked/obj/Debug/libs/crypto++/cpu.o b/Untracked/obj/Debug/libs/crypto++/cpu.o Binary files differnew file mode 100644 index 0000000..412f221 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cpu.o diff --git a/Untracked/obj/Debug/libs/crypto++/crc.o b/Untracked/obj/Debug/libs/crypto++/crc.o Binary files differnew file mode 100644 index 0000000..72cec78 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/crc.o diff --git a/Untracked/obj/Debug/libs/crypto++/cryptlib.o b/Untracked/obj/Debug/libs/crypto++/cryptlib.o Binary files differnew file mode 100644 index 0000000..bd6b152 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cryptlib.o diff --git a/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o b/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o Binary files differnew file mode 100644 index 0000000..dc438ab --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o diff --git a/Untracked/obj/Debug/libs/crypto++/datatest.o b/Untracked/obj/Debug/libs/crypto++/datatest.o Binary files differnew file mode 100644 index 0000000..8e1f465 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/datatest.o diff --git a/Untracked/obj/Debug/libs/crypto++/default.o b/Untracked/obj/Debug/libs/crypto++/default.o Binary files differnew file mode 100644 index 0000000..8c73b16 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/default.o diff --git a/Untracked/obj/Debug/libs/crypto++/des.o b/Untracked/obj/Debug/libs/crypto++/des.o Binary files differnew file mode 100644 index 0000000..27d1b5f --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/des.o diff --git a/Untracked/obj/Debug/libs/crypto++/dessp.o b/Untracked/obj/Debug/libs/crypto++/dessp.o Binary files differnew file mode 100644 index 0000000..8212f51 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dessp.o diff --git a/Untracked/obj/Debug/libs/crypto++/dh.o b/Untracked/obj/Debug/libs/crypto++/dh.o Binary files differnew file mode 100644 index 0000000..0612881 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dh.o diff --git a/Untracked/obj/Debug/libs/crypto++/dh2.o b/Untracked/obj/Debug/libs/crypto++/dh2.o Binary files differnew file mode 100644 index 0000000..b08cd5d --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dh2.o diff --git a/Untracked/obj/Debug/libs/crypto++/dll.o b/Untracked/obj/Debug/libs/crypto++/dll.o Binary files differnew file mode 100644 index 0000000..3a90730 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dll.o diff --git a/Untracked/obj/Debug/libs/crypto++/dlltest.o b/Untracked/obj/Debug/libs/crypto++/dlltest.o Binary files differnew file mode 100644 index 0000000..82f93c7 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dlltest.o diff --git a/Untracked/obj/Debug/libs/crypto++/dsa.o b/Untracked/obj/Debug/libs/crypto++/dsa.o Binary files differnew file mode 100644 index 0000000..7f78a8c --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/dsa.o diff --git a/Untracked/obj/Debug/libs/crypto++/eax.o b/Untracked/obj/Debug/libs/crypto++/eax.o Binary files differnew file mode 100644 index 0000000..7fa72ff --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/eax.o diff --git a/Untracked/obj/Debug/libs/crypto++/ec2n.o b/Untracked/obj/Debug/libs/crypto++/ec2n.o Binary files differnew file mode 100644 index 0000000..68f6419 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/ec2n.o diff --git a/Untracked/obj/Debug/libs/crypto++/eccrypto.o b/Untracked/obj/Debug/libs/crypto++/eccrypto.o Binary files differnew file mode 100644 index 0000000..e1039c7 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/eccrypto.o diff --git a/Untracked/obj/Debug/libs/crypto++/ecp.o b/Untracked/obj/Debug/libs/crypto++/ecp.o Binary files differnew file mode 100644 index 0000000..ecee1fe --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/ecp.o diff --git a/Untracked/obj/Debug/libs/crypto++/elgamal.o b/Untracked/obj/Debug/libs/crypto++/elgamal.o Binary files differnew file mode 100644 index 0000000..0794a33 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/elgamal.o diff --git a/Untracked/obj/Debug/libs/crypto++/emsa2.o b/Untracked/obj/Debug/libs/crypto++/emsa2.o Binary files differnew file mode 100644 index 0000000..e46aea2 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/emsa2.o diff --git a/Untracked/obj/Debug/libs/crypto++/eprecomp.o b/Untracked/obj/Debug/libs/crypto++/eprecomp.o Binary files differnew file mode 100644 index 0000000..ab6d167 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/eprecomp.o diff --git a/Untracked/obj/Debug/libs/crypto++/esign.o b/Untracked/obj/Debug/libs/crypto++/esign.o Binary files differnew file mode 100644 index 0000000..4c4ca7b --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/esign.o diff --git a/Untracked/obj/Debug/libs/crypto++/files.o b/Untracked/obj/Debug/libs/crypto++/files.o Binary files differnew file mode 100644 index 0000000..345fd07 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/files.o diff --git a/Untracked/obj/Debug/libs/crypto++/filters.o b/Untracked/obj/Debug/libs/crypto++/filters.o Binary files differnew file mode 100644 index 0000000..f752ed2 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/filters.o diff --git a/Untracked/obj/Debug/libs/crypto++/fips140.o b/Untracked/obj/Debug/libs/crypto++/fips140.o Binary files differnew file mode 100644 index 0000000..8c1262a --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/fips140.o diff --git a/Untracked/obj/Debug/libs/crypto++/fipsalgt.o b/Untracked/obj/Debug/libs/crypto++/fipsalgt.o Binary files differnew file mode 100644 index 0000000..991dd36 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/fipsalgt.o diff --git a/Untracked/obj/Debug/libs/crypto++/fipstest.o b/Untracked/obj/Debug/libs/crypto++/fipstest.o Binary files differnew file mode 100644 index 0000000..fd05c58 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/fipstest.o diff --git a/Untracked/obj/Debug/libs/crypto++/gcm.o b/Untracked/obj/Debug/libs/crypto++/gcm.o Binary files differnew file mode 100644 index 0000000..df61a0d --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gcm.o diff --git a/Untracked/obj/Debug/libs/crypto++/gf256.o b/Untracked/obj/Debug/libs/crypto++/gf256.o Binary files differnew file mode 100644 index 0000000..917d30d --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gf256.o diff --git a/Untracked/obj/Debug/libs/crypto++/gf2_32.o b/Untracked/obj/Debug/libs/crypto++/gf2_32.o Binary files differnew file mode 100644 index 0000000..3dfae94 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gf2_32.o diff --git a/Untracked/obj/Debug/libs/crypto++/gf2n.o b/Untracked/obj/Debug/libs/crypto++/gf2n.o Binary files differnew file mode 100644 index 0000000..980cb2d --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gf2n.o diff --git a/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o b/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o Binary files differnew file mode 100644 index 0000000..efb022f --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o diff --git a/Untracked/obj/Debug/libs/crypto++/gost.o b/Untracked/obj/Debug/libs/crypto++/gost.o Binary files differnew file mode 100644 index 0000000..ed76dd9 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gost.o diff --git a/Untracked/obj/Debug/libs/crypto++/gzip.o b/Untracked/obj/Debug/libs/crypto++/gzip.o Binary files differnew file mode 100644 index 0000000..06ee375 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/gzip.o diff --git a/Untracked/obj/Debug/libs/crypto++/hex.o b/Untracked/obj/Debug/libs/crypto++/hex.o Binary files differnew file mode 100644 index 0000000..a3470bb --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/hex.o diff --git a/Untracked/obj/Debug/libs/crypto++/hmac.o b/Untracked/obj/Debug/libs/crypto++/hmac.o Binary files differnew file mode 100644 index 0000000..6091fcb --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/hmac.o diff --git a/Untracked/obj/Debug/libs/crypto++/hrtimer.o b/Untracked/obj/Debug/libs/crypto++/hrtimer.o Binary files differnew file mode 100644 index 0000000..188d505 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/hrtimer.o diff --git a/Untracked/obj/Debug/libs/crypto++/ida.o b/Untracked/obj/Debug/libs/crypto++/ida.o Binary files differnew file mode 100644 index 0000000..7c09f45 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/ida.o diff --git a/Untracked/obj/Debug/libs/crypto++/idea.o b/Untracked/obj/Debug/libs/crypto++/idea.o Binary files differnew file mode 100644 index 0000000..e087070 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/idea.o diff --git a/Untracked/obj/Debug/libs/crypto++/integer.o b/Untracked/obj/Debug/libs/crypto++/integer.o Binary files differnew file mode 100644 index 0000000..ec94323 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/integer.o diff --git a/Untracked/obj/Debug/libs/crypto++/iterhash.o b/Untracked/obj/Debug/libs/crypto++/iterhash.o Binary files differnew file mode 100644 index 0000000..b913791 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/iterhash.o diff --git a/Untracked/obj/Debug/libs/crypto++/luc.o b/Untracked/obj/Debug/libs/crypto++/luc.o Binary files differnew file mode 100644 index 0000000..c8472c5 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/luc.o diff --git a/Untracked/obj/Debug/libs/crypto++/mars.o b/Untracked/obj/Debug/libs/crypto++/mars.o Binary files differnew file mode 100644 index 0000000..47cbf6e --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/mars.o diff --git a/Untracked/obj/Debug/libs/crypto++/marss.o b/Untracked/obj/Debug/libs/crypto++/marss.o Binary files differnew file mode 100644 index 0000000..8d56915 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/marss.o diff --git a/Untracked/obj/Debug/libs/crypto++/md2.o b/Untracked/obj/Debug/libs/crypto++/md2.o Binary files differnew file mode 100644 index 0000000..3f6ee82 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/md2.o diff --git a/Untracked/obj/Debug/libs/crypto++/md4.o b/Untracked/obj/Debug/libs/crypto++/md4.o Binary files differnew file mode 100644 index 0000000..7029056 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/md4.o diff --git a/Untracked/obj/Debug/libs/crypto++/md5.o b/Untracked/obj/Debug/libs/crypto++/md5.o Binary files differnew file mode 100644 index 0000000..6245965 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/md5.o diff --git a/Untracked/obj/Debug/libs/crypto++/misc.o b/Untracked/obj/Debug/libs/crypto++/misc.o Binary files differnew file mode 100644 index 0000000..4ae7017 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/misc.o diff --git a/Untracked/obj/Debug/libs/crypto++/modes.o b/Untracked/obj/Debug/libs/crypto++/modes.o Binary files differnew file mode 100644 index 0000000..c2c19ff --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/modes.o diff --git a/Untracked/obj/Debug/libs/crypto++/mqueue.o b/Untracked/obj/Debug/libs/crypto++/mqueue.o Binary files differnew file mode 100644 index 0000000..e010503 --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/mqueue.o diff --git a/Untracked/obj/Debug/libs/crypto++/mqv.o b/Untracked/obj/Debug/libs/crypto++/mqv.o Binary files differnew file mode 100644 index 0000000..eb2760f --- /dev/null +++ b/Untracked/obj/Debug/libs/crypto++/mqv.o diff --git a/Untracked/obj/Debug/main.o b/Untracked/obj/Debug/main.o Binary files differnew file mode 100644 index 0000000..f435115 --- /dev/null +++ b/Untracked/obj/Debug/main.o diff --git a/Untracked/obj/Debug/src/CryptClass/AESCrypt.o b/Untracked/obj/Debug/src/CryptClass/AESCrypt.o Binary files differnew file mode 100644 index 0000000..cc89ed2 --- /dev/null +++ b/Untracked/obj/Debug/src/CryptClass/AESCrypt.o diff --git a/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o b/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o Binary files differnew file mode 100644 index 0000000..e5148e1 --- /dev/null +++ b/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o diff --git a/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o b/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o Binary files differnew file mode 100644 index 0000000..1ae64c5 --- /dev/null +++ b/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o diff --git a/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o b/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o Binary files differnew file mode 100644 index 0000000..c425e11 --- /dev/null +++ b/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o diff --git a/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o b/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o Binary files differnew file mode 100644 index 0000000..dea9935 --- /dev/null +++ b/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o diff --git a/Untracked/obj/Debug/src/ParserClass/FileManParser.o b/Untracked/obj/Debug/src/ParserClass/FileManParser.o Binary files differnew file mode 100644 index 0000000..3eb9754 --- /dev/null +++ b/Untracked/obj/Debug/src/ParserClass/FileManParser.o diff --git a/Untracked/obj/Debug/src/main.o b/Untracked/obj/Debug/src/main.o Binary files differnew file mode 100644 index 0000000..8832a80 --- /dev/null +++ b/Untracked/obj/Debug/src/main.o |
