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 , where is the value of +# the FILE_VERSION_FILTER tag, and 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 , where +# is the value of the INPUT_FILTER tag, and 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 +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +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 <::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 + +//----- crypto++ ----- +#include +#include +#include + + +/** + * @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 + + +/** + * @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 < +#include +#include + +//----- crypto++ ----- +#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1 +#include //For MD5 +#include //For Hex convertion +#include //For SHA +#include + + +/** + * @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 new file mode 100644 index 0000000..d44cfb8 Binary files /dev/null and b/Untracked/Doxygen/bob.bin differ 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 @@ + + + + + + + + + <![CDATA[Titre]]> + + + + + + + <![CDATA[Titre 2]]> + + + + .]]> + + + + + + 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 @@ + + + + + +forgetIt: CryptClass/AESCrypt.hpp Source File + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ + +
+
+
+
AESCrypt.hpp
+
+
+
+ + + + 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 @@ + + + + + +forgetIt: CryptClass/HASHCrypt.cpp File Reference + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ + +
+
+
+
HASHCrypt.cpp File Reference
+
+
+ +

HASHCrypt class definitions. +More...

+
#include "HASHCrypt.hpp"
+

Detailed Description

+

HASHCrypt class definitions.

+
Author
manzerbredes
+
Date
8 Mars 2015
+

Contain all definitions of HASHCrypt class.

+
+ + + + 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 @@ + + + + + +forgetIt: CryptClass/HASHCrypt.hpp File Reference + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ + +
+
+ +
+
HASHCrypt.hpp File Reference
+
+
+ +

HASHCrypt class header. +More...

+
#include <iostream>
+#include <string>
+#include <sstream>
+#include <crypto++/md5.h>
+#include <crypto++/hex.h>
+#include <crypto++/sha.h>
+
+

Go to the source code of this file.

+ + + + +

+Classes

class  HASHCrypt
 Hashing class. More...
+

Detailed Description

+

HASHCrypt class header.

+
Author
manzerbredes
+
Date
8 Mars 2015
+

Contain all prototypes of HASHCrypt class.

+
+ + + + 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 @@ + + + + + +forgetIt: CryptClass/HASHCrypt.hpp Source File + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ + +
+
+
+
HASHCrypt.hpp
+
+
+Go to the documentation of this file.
1 
+
12 //----- std -----
+
13 #include <iostream>
+
14 #include <string>
+
15 #include <sstream>
+
16 
+
17 //----- crypto++ -----
+
18 #include <crypto++/md5.h> //For MD5
+
19 #include <crypto++/hex.h> //For Hex convertion
+
20 #include <crypto++/sha.h> //For SHA
+
21 
+
22 
+
23 
+
24 
+
34 class HASHCrypt{
+
35 
+
36  public:
+
40  HASHCrypt();
+
41 
+
45  ~HASHCrypt();
+
46 
+
56  void getMD5_128(std::string chain, byte* digest, int size);
+
57 
+
67  void getSHA_256(std::string chain, byte* digest, int size); //Retourne SHA_256
+
68 
+
69  private:
+
70 
+
81  void checkDigestSize(int sizeRequired, int size);
+
82 
+
93  std::string getInvalidDigestSizeError(int sizeRequired, int size);
+
94 
+
95 
+
96 
+
97 };
+
+ + + + 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 @@ + + + + + +forgetIt: Class List + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + +
+ + + + +
+ +
+ +
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+ + +
\CHASHCryptHashing class
+
+
+ + + + diff --git a/Untracked/Doxygen/html/bc_s.png b/Untracked/Doxygen/html/bc_s.png new file mode 100644 index 0000000..25e3beb Binary files /dev/null and b/Untracked/Doxygen/html/bc_s.png differ diff --git a/Untracked/Doxygen/html/bdwn.png b/Untracked/Doxygen/html/bdwn.png new file mode 100644 index 0000000..940a0b9 Binary files /dev/null and b/Untracked/Doxygen/html/bdwn.png differ 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 @@ + + + + + +forgetIt: Member List + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ +
+
+
+
HASHCrypt Member List
+
+
+ +

This is the complete list of members for HASHCrypt, including all inherited members.

+ + + + + +
getMD5_128(std::string chain, byte *digest, int size)HASHCrypt
getSHA_256(std::string chain, byte *digest, int size)HASHCrypt
HASHCrypt()HASHCrypt
~HASHCrypt()HASHCrypt
+ + + + 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 @@ + + + + + +forgetIt: HASHCrypt Class Reference + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + + +
+ +
+ +
+
+ +
+
HASHCrypt Class Reference
+
+
+ +

Hashing class. + More...

+ +

#include "/CryptClass/HASHCrypt.hpp"

+ + + + + + + + + + +

+Public Member Functions

HASHCrypt ()
 Contructor.
~HASHCrypt ()
 Destructor.
void getMD5_128 (std::string chain, byte *digest, int size)
 Create an MD5 over 128 bits on a digest array of bytes.
void getSHA_256 (std::string chain, byte *digest, int size)
 Create an SHA over 256 bits on a digest array of bytes.
+

Detailed Description

+

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.

+

Member Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
void HASHCrypt::getMD5_128 (std::string chain,
byte * digest,
int size 
)
+
+ +

Create an MD5 over 128 bits on a digest array of bytes.

+
Parameters
+ + + + +
chain: Chain to hash
digest: An array of bytes (8 bits)
size: Length of the array digest
+
+
+

Warning digest will be modified.

+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
void HASHCrypt::getSHA_256 (std::string chain,
byte * digest,
int size 
)
+
+ +

Create an SHA over 256 bits on a digest array of bytes.

+
Parameters
+ + + + +
chain: Chain to hash
digest: An array of bytes (8 bits)
size: Length of the array digest
+
+
+

Warning digest will be modified.

+ +
+
+
The documentation for this class was generated from the following files: +
+ + + + 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 @@ + + + + + +forgetIt: Class Index + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + +
+ + + + +
+ +
+ +
+
+
Class Index
+
+
+ + + + + + +
  H  
+
HASHCrypt   
+ +
+ + + + diff --git a/Untracked/Doxygen/html/closed.png b/Untracked/Doxygen/html/closed.png new file mode 100644 index 0000000..98cc2c9 Binary files /dev/null and b/Untracked/Doxygen/html/closed.png differ 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 @@ + + + + + +forgetIt: CryptClass/ Directory Reference + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + +
+ +
+ + +
+
+
+
CryptClass Directory Reference
+
+
+ + + + + + + + +

+Files

file  AESCrypt.cpp
file  AESCrypt.hpp [code]
file  HASHCrypt.cpp
 HASHCrypt class definitions.
file  HASHCrypt.hpp [code]
 HASHCrypt class header.
+
+ + + + 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 new file mode 100644 index 0000000..3ff17d8 Binary files /dev/null and b/Untracked/Doxygen/html/doxygen.png differ 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 + + + + +forgetIt: File List + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + +
+ + + + +
+ +
+ +
+
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+
[detail level 12]
+ + + + + +
o-CryptClass
|o*AESCrypt.hpp
|o*HASHCrypt.cppHASHCrypt class definitions
|\*HASHCrypt.hppHASHCrypt class header
\*main.cppEntry point
+
+
+ + + + diff --git a/Untracked/Doxygen/html/ftv2blank.png b/Untracked/Doxygen/html/ftv2blank.png new file mode 100644 index 0000000..63c605b Binary files /dev/null and b/Untracked/Doxygen/html/ftv2blank.png differ diff --git a/Untracked/Doxygen/html/ftv2cl.png b/Untracked/Doxygen/html/ftv2cl.png new file mode 100644 index 0000000..132f657 Binary files /dev/null and b/Untracked/Doxygen/html/ftv2cl.png differ diff --git a/Untracked/Doxygen/html/ftv2doc.png b/Untracked/Doxygen/html/ftv2doc.png new file mode 100644 index 0000000..17edabf Binary files /dev/null and b/Untracked/Doxygen/html/ftv2doc.png differ diff --git a/Untracked/Doxygen/html/ftv2folderclosed.png b/Untracked/Doxygen/html/ftv2folderclosed.png new file mode 100644 index 0000000..bb8ab35 Binary files /dev/null and b/Untracked/Doxygen/html/ftv2folderclosed.png differ diff --git a/Untracked/Doxygen/html/ftv2folderopen.png b/Untracked/Doxygen/html/ftv2folderopen.png new file mode 100644 index 0000000..d6c7f67 Binary files /dev/null and b/Untracked/Doxygen/html/ftv2folderopen.png differ diff --git a/Untracked/Doxygen/html/ftv2lastnode.png b/Untracked/Doxygen/html/ftv2lastnode.png new file mode 100644 index 0000000..63c605b Binary files /dev/null and b/Untracked/Doxygen/html/ftv2lastnode.png differ diff --git a/Untracked/Doxygen/html/ftv2link.png b/Untracked/Doxygen/html/ftv2link.png new file mode 100644 index 0000000..17edabf Binary files /dev/null and b/Untracked/Doxygen/html/ftv2link.png differ diff --git a/Untracked/Doxygen/html/ftv2mlastnode.png b/Untracked/Doxygen/html/ftv2mlastnode.png new file mode 100644 index 0000000..0b63f6d Binary files /dev/null and b/Untracked/Doxygen/html/ftv2mlastnode.png differ diff --git a/Untracked/Doxygen/html/ftv2mnode.png b/Untracked/Doxygen/html/ftv2mnode.png new file mode 100644 index 0000000..0b63f6d Binary files /dev/null and b/Untracked/Doxygen/html/ftv2mnode.png differ diff --git a/Untracked/Doxygen/html/ftv2mo.png b/Untracked/Doxygen/html/ftv2mo.png new file mode 100644 index 0000000..4bfb80f Binary files /dev/null and b/Untracked/Doxygen/html/ftv2mo.png differ diff --git a/Untracked/Doxygen/html/ftv2node.png b/Untracked/Doxygen/html/ftv2node.png new file mode 100644 index 0000000..63c605b Binary files /dev/null and b/Untracked/Doxygen/html/ftv2node.png differ diff --git a/Untracked/Doxygen/html/ftv2ns.png b/Untracked/Doxygen/html/ftv2ns.png new file mode 100644 index 0000000..72e3d71 Binary files /dev/null and b/Untracked/Doxygen/html/ftv2ns.png differ diff --git a/Untracked/Doxygen/html/ftv2plastnode.png b/Untracked/Doxygen/html/ftv2plastnode.png new file mode 100644 index 0000000..c6ee22f Binary files /dev/null and b/Untracked/Doxygen/html/ftv2plastnode.png differ diff --git a/Untracked/Doxygen/html/ftv2pnode.png b/Untracked/Doxygen/html/ftv2pnode.png new file mode 100644 index 0000000..c6ee22f Binary files /dev/null and b/Untracked/Doxygen/html/ftv2pnode.png differ diff --git a/Untracked/Doxygen/html/ftv2splitbar.png b/Untracked/Doxygen/html/ftv2splitbar.png new file mode 100644 index 0000000..fe895f2 Binary files /dev/null and b/Untracked/Doxygen/html/ftv2splitbar.png differ diff --git a/Untracked/Doxygen/html/ftv2vertline.png b/Untracked/Doxygen/html/ftv2vertline.png new file mode 100644 index 0000000..63c605b Binary files /dev/null and b/Untracked/Doxygen/html/ftv2vertline.png differ 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 @@ + + + + + +forgetIt: Class Members + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + +
+ + + + +
+ +
+ +
+
Here is a list of all documented class members with links to the class documentation for each member:
+
+ + + + 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 @@ + + + + + +forgetIt: Class Members - Functions + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + +
+ + + + +
+ +
+ +
+
+ + + + 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 @@ + + + + + +forgetIt: File Members + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + +
+ + + + +
+ +
+ +
+
Here is a list of all documented file members with links to the documentation:
+
+ + + + 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 @@ + + + + + +forgetIt: File Members + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + +
+ + + + +
+ +
+ +
+
+ + + + 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 @@ + + + + + +forgetIt: Main Page + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + +
+ + + + +
+ +
+ +
+
+
forgetIt Documentation
+
+
+
+ + + + 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"?"":"")+""),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;g0){if(c!=="border")for(;g=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)[^>]*$|#([\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(;j0)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(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?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
a",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>",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="
"+""+"
",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="
t
",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="
",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-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=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=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=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;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?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;h0){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+~,(\[\\]+)+|[>+~])(\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;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=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 bc[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=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.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.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="

";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="
";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;h0)for(h=g;h=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-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:]+)/,$=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_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
","
"]),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>");try{for(var c=0,d=this.length;c1&&l0?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>");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]===""&&!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=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>/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("
").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=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-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 @@ + + + + + +forgetIt: main.cpp File Reference + + + + + + + + + +
+
+
+ + + + + +
+
forgetIt +
+
+ + + + + + + + + + +
+ +
+ + +
+ +
+
main.cpp File Reference
+
+
+ +

Entry point. +More...

+
#include <iostream>
+#include <string>
+#include "CryptClass/HASHCrypt.hpp"
+
+ + + + +

+Functions

+void aff (std::string chaine)
int main (int argc, char *argv[])
 main function
+

Detailed Description

+

Entry point.

+
Author
manzerbredes
+
Version
Prototype
+
Date
8 Mars 2015
+

Entry point of the application.

+

Function Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + +
int main (int argc,
char * argv[] 
)
+
+ +

main function

+
Author
manzerbredes
+
Parameters
+ + + +
argccontain *argv[] length
*argv[]contain the arguments list
+
+
+
Returns
Return code, an int.
+ +
+
+
+ + + + 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 @@ + + + + + +forgetIt: #README + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + + + + + +
+ +
+ +
+
+
+
#README
+
+
+

Présentation

+
+

forgetIt est un projet open-source permettant une gestion, une sauvegarde de vos mots de passe de manière sécurisé.
+

+

+
+

Pour cela forgetIt utilise des algorithmes de cryptages ayant fait leurs preuves issue de la bibliothèque *crypto++*.
+ La conception d'une interface graphique est prévue, et sera basé sur la bibliothèque *GTK+*.
+

+

Suite en construction...

+
+ + + + diff --git a/Untracked/Doxygen/html/nav_f.png b/Untracked/Doxygen/html/nav_f.png new file mode 100644 index 0000000..72a58a5 Binary files /dev/null and b/Untracked/Doxygen/html/nav_f.png differ diff --git a/Untracked/Doxygen/html/nav_g.png b/Untracked/Doxygen/html/nav_g.png new file mode 100644 index 0000000..2093a23 Binary files /dev/null and b/Untracked/Doxygen/html/nav_g.png differ diff --git a/Untracked/Doxygen/html/nav_h.png b/Untracked/Doxygen/html/nav_h.png new file mode 100644 index 0000000..33389b1 Binary files /dev/null and b/Untracked/Doxygen/html/nav_h.png differ diff --git a/Untracked/Doxygen/html/open.png b/Untracked/Doxygen/html/open.png new file mode 100644 index 0000000..30f75c7 Binary files /dev/null and b/Untracked/Doxygen/html/open.png differ 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 @@ + + + + + +forgetIt: Related Pages + + + + + + + + + +
+
+ + + + + + +
+
forgetIt +
+
+
+ + + + +
+ + + + +
+ +
+ +
+
+
Related Pages
+
+
+
Here is a list of all related documentation pages:
+ + +
\#README
+
+
+ + + + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 new file mode 100644 index 0000000..9342d3d Binary files /dev/null and b/Untracked/Doxygen/html/search/close.png differ 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 @@ + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + 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 new file mode 100644 index 0000000..81f6040 Binary files /dev/null and b/Untracked/Doxygen/html/search/mag_sel.png differ 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 @@ + + + + + + + +
+
No Matches
+
+ + 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 do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // 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 . + 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 +#include +#include + +//----- 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 +#include + +//----- class ----- +#include "CryptClass/AESCrypt.hpp" + +//----- Prototype ----- +void aff(std::string chaine); + + + + #include + #include + #include + #include + #include + #include +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="\n\ + !:!!;:!:;]]>\ + \ + "; + + 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;iitem(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 < + + + + + 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 + + + + "FileManIOFile.hpp" + "FileManParser.hpp" + "Website.hpp" + + +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 + + "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 + + + + + + + +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 + + +1281345762 /home/loic/Documents/c/forgetIt/libs/crypto++/stdcpp.h + + + + + + + + + + + + + + + + + +1361359852 /home/loic/Documents/c/forgetIt/libs/crypto++/secblock.h + "config.h" + "misc.h" + + +1361359852 /home/loic/Documents/c/forgetIt/libs/crypto++/misc.h + "cryptlib.h" + "smartptr.h" + + + + + +1281102380 /home/loic/Documents/c/forgetIt/libs/crypto++/smartptr.h + "config.h" + + +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" + + +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" + + + +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" + + + + + +1281102388 /home/loic/Documents/c/forgetIt/libs/crypto++/mqueue.h + "queue.h" + "filters.h" + + +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" + + + +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" + + + +1426244841 /home/loic/Documents/c/forgetIt/CryptClass/AbstractSKA.hpp + + +1426245515 /home/loic/Documents/c/forgetIt/CryptClass/AESCrypt.hpp + "AbstractSKA.hpp" + "HASHCrypt.hpp" + + + + + +1426789990 source:/home/loic/Documents/c/forgetIt/IOFileClass/FileManIOFile.cpp + "FileManIOFile.hpp" + +1426246384 /home/loic/Documents/c/forgetIt/IOFileClass/FileManIOFile.hpp + + + + "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 + + + "AbstractIDManager.hpp" + +1426348906 /home/loic/Documents/c/forgetIt/ParserClass/FileManParser.hpp + + + + + "Website.hpp" + + + +1426310189 source:/home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/FileManContainer.cpp + "FileManContainer.hpp" + +1426310189 /home/loic/Documents/c/forgetIt/ParserClass/FileManContainer/FileManContainer.hpp + + + + + + + + + + "Website.hpp" + +1426339688 source:/home/loic/Documents/c/forgetIt/ParserClass/AbstractIDManager.cpp + "AbstractIDManager.hpp" + +1426339660 /home/loic/Documents/c/forgetIt/ParserClass/AbstractIDManager.hpp + + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/node.h + + + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/noncopyable.h + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/exception.h + + + + +1348900853 /usr/include/glibmm-2.4/glibmm/ustring.h + + + + + + + + + +1348900855 /usr/lib/x86_64-linux-gnu/glibmm-2.4/include/glibmmconfig.h + +1348900853 /usr/include/glibmm-2.4/glibmm/unicode.h + + + +1357747352 /usr/include/glib-2.0/glib.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1357747352 /usr/include/glib-2.0/glib/galloca.h + + + + +1357747352 /usr/include/glib-2.0/glib/gtypes.h + + + + + +1357747352 /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h + + + + +1357747352 /usr/include/glib-2.0/glib/gmacros.h + + +1357747352 /usr/include/glib-2.0/glib/gversionmacros.h + +1357747352 /usr/include/glib-2.0/glib/garray.h + + +1357747352 /usr/include/glib-2.0/glib/gasyncqueue.h + + +1357747352 /usr/include/glib-2.0/glib/gthread.h + + + +1357747352 /usr/include/glib-2.0/glib/gatomic.h + + +1357747352 /usr/include/glib-2.0/glib/gerror.h + + + +1357747352 /usr/include/glib-2.0/glib/gquark.h + + +1357747352 /usr/include/glib-2.0/glib/gbacktrace.h + + + +1357747352 /usr/include/glib-2.0/glib/gbase64.h + + +1357747352 /usr/include/glib-2.0/glib/gbitlock.h + + +1357747352 /usr/include/glib-2.0/glib/gbookmarkfile.h + + + +1357747352 /usr/include/glib-2.0/glib/gbytes.h + + + +1357747352 /usr/include/glib-2.0/glib/gcharset.h + + +1357747352 /usr/include/glib-2.0/glib/gchecksum.h + + +1357747352 /usr/include/glib-2.0/glib/gconvert.h + + +1357747352 /usr/include/glib-2.0/glib/gdataset.h + + +1357747352 /usr/include/glib-2.0/glib/gdate.h + + + + +1357747352 /usr/include/glib-2.0/glib/gdatetime.h + + +1357747352 /usr/include/glib-2.0/glib/gtimezone.h + + +1357747352 /usr/include/glib-2.0/glib/gdir.h + + +1357747352 /usr/include/glib-2.0/glib/genviron.h + + +1357747352 /usr/include/glib-2.0/glib/gfileutils.h + + +1357747352 /usr/include/glib-2.0/glib/ggettext.h + + +1357747352 /usr/include/glib-2.0/glib/ghash.h + + + +1357747352 /usr/include/glib-2.0/glib/glist.h + + +1357747352 /usr/include/glib-2.0/glib/gmem.h + + +1357747352 /usr/include/glib-2.0/glib/ghmac.h + + "gchecksum.h" + +1357747352 /usr/include/glib-2.0/glib/ghook.h + + +1357747352 /usr/include/glib-2.0/glib/ghostutils.h + + +1357747352 /usr/include/glib-2.0/glib/giochannel.h + + + + +1357747352 /usr/include/glib-2.0/glib/gmain.h + + + + +1357747352 /usr/include/glib-2.0/glib/gpoll.h + + +1357747352 /usr/include/glib-2.0/glib/gslist.h + + +1357747352 /usr/include/glib-2.0/glib/gstring.h + + + + +1357747352 /usr/include/glib-2.0/glib/gunicode.h + + + +1357747352 /usr/include/glib-2.0/glib/gutils.h + + + +1357747352 /usr/include/glib-2.0/glib/gkeyfile.h + + +1357747352 /usr/include/glib-2.0/glib/gmappedfile.h + + + +1357747352 /usr/include/glib-2.0/glib/gmarkup.h + + + + +1357747352 /usr/include/glib-2.0/glib/gmessages.h + + + + +1357747352 /usr/include/glib-2.0/glib/gnode.h + + +1357747352 /usr/include/glib-2.0/glib/goption.h + + + +1357747352 /usr/include/glib-2.0/glib/gpattern.h + + +1357747352 /usr/include/glib-2.0/glib/gprimes.h + + +1357747352 /usr/include/glib-2.0/glib/gqsort.h + + +1357747352 /usr/include/glib-2.0/glib/gqueue.h + + +1357747352 /usr/include/glib-2.0/glib/grand.h + + +1357747352 /usr/include/glib-2.0/glib/gregex.h + + + +1357747352 /usr/include/glib-2.0/glib/gscanner.h + + + +1357747352 /usr/include/glib-2.0/glib/gsequence.h + + +1357747352 /usr/include/glib-2.0/glib/gshell.h + + +1357747352 /usr/include/glib-2.0/glib/gslice.h + + +1357747352 /usr/include/glib-2.0/glib/gspawn.h + + +1357747352 /usr/include/glib-2.0/glib/gstrfuncs.h + + + + +1357747352 /usr/include/glib-2.0/glib/gstringchunk.h + + +1357747352 /usr/include/glib-2.0/glib/gtestutils.h + + + + + +1357747352 /usr/include/glib-2.0/glib/gthreadpool.h + + +1357747352 /usr/include/glib-2.0/glib/gtimer.h + + +1357747352 /usr/include/glib-2.0/glib/gtrashstack.h + + +1357747352 /usr/include/glib-2.0/glib/gtree.h + + +1357747352 /usr/include/glib-2.0/glib/gurifuncs.h + + +1357747352 /usr/include/glib-2.0/glib/gvarianttype.h + + + +1357747352 /usr/include/glib-2.0/glib/gvariant.h + + + +1357747352 /usr/include/glib-2.0/glib/gversion.h + + +1357747352 /usr/include/glib-2.0/glib/gwin32.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/gallocator.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/gcache.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/gcompletion.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/gmain.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/grel.h + + +1357747352 /usr/include/glib-2.0/glib/deprecated/gthread.h + + + +1328501009 /usr/lib/libxml++-2.6/include/libxml++config.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/libxml++.h + + + + + + + + + + + + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/internal_error.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/parse_error.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/domparser.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/parser.h + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/element.h + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/attribute.h + + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/commentnode.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/contentnode.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/cdatanode.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/exceptions/validity_error.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/dtd.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/document.h + + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/saxparser.h + + + + + "libxml++/document.h" + +1328501009 /usr/include/libxml++-2.6/libxml++/parsers/textreader.h + + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/entityreference.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/nodes/textnode.h + + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/validator.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/dtdvalidator.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/validators/schemavalidator.h + + + + +1328501009 /usr/include/libxml++-2.6/libxml++/schema.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtk.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdk.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkconfig.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkversionmacros.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h + + + + + +1357747355 /usr/include/glib-2.0/gio/gio.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1357747355 /usr/include/glib-2.0/gio/giotypes.h + + +1357747355 /usr/include/glib-2.0/gio/gioenums.h + + +1357747352 /usr/include/glib-2.0/glib-object.h + + + + + + + + + + + + + + + +1357747353 /usr/include/glib-2.0/gobject/gbinding.h + + + +1357747353 /usr/include/glib-2.0/gobject/gobject.h + + + + + + +1357747353 /usr/include/glib-2.0/gobject/gtype.h + + +1357747353 /usr/include/glib-2.0/gobject/gvalue.h + + +1357747353 /usr/include/glib-2.0/gobject/gparam.h + + +1357747353 /usr/include/glib-2.0/gobject/gclosure.h + + +1357747353 /usr/include/glib-2.0/gobject/gsignal.h + + + + + +1357747353 /usr/include/glib-2.0/gobject/gmarshal.h + +1357747353 /usr/include/glib-2.0/gobject/gboxed.h + + + +1357747353 /usr/include/glib-2.0/gobject/glib-types.h + + +1357747353 /usr/include/glib-2.0/gobject/genums.h + + +1357747353 /usr/include/glib-2.0/gobject/gparamspecs.h + + + + + +1357747353 /usr/include/glib-2.0/gobject/gsourceclosure.h + + + +1357747353 /usr/include/glib-2.0/gobject/gtypemodule.h + + + +1357747353 /usr/include/glib-2.0/gobject/gtypeplugin.h + + +1357747353 /usr/include/glib-2.0/gobject/gvaluearray.h + + +1357747353 /usr/include/glib-2.0/gobject/gvaluetypes.h + + +1357747355 /usr/include/glib-2.0/gio/gaction.h + + +1357747355 /usr/include/glib-2.0/gio/gactiongroup.h + + +1357747355 /usr/include/glib-2.0/gio/gactiongroupexporter.h + + +1357747355 /usr/include/glib-2.0/gio/gactionmap.h + + +1357747355 /usr/include/glib-2.0/gio/gappinfo.h + + +1357747355 /usr/include/glib-2.0/gio/gapplication.h + + +1357747355 /usr/include/glib-2.0/gio/gapplicationcommandline.h + + +1357747355 /usr/include/glib-2.0/gio/gasyncinitable.h + + + +1357747355 /usr/include/glib-2.0/gio/ginitable.h + + +1357747355 /usr/include/glib-2.0/gio/gasyncresult.h + + +1357747355 /usr/include/glib-2.0/gio/gbufferedinputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gfilterinputstream.h + + +1357747355 /usr/include/glib-2.0/gio/ginputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gbufferedoutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gfilteroutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/goutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gcancellable.h + + +1357747355 /usr/include/glib-2.0/gio/gcharsetconverter.h + + +1357747355 /usr/include/glib-2.0/gio/gconverter.h + + +1357747355 /usr/include/glib-2.0/gio/gcontenttype.h + + +1357747355 /usr/include/glib-2.0/gio/gconverterinputstream.h + + + +1357747355 /usr/include/glib-2.0/gio/gconverteroutputstream.h + + + +1357747355 /usr/include/glib-2.0/gio/gcredentials.h + + + + +1357747355 /usr/include/glib-2.0/gio/gdatainputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gdataoutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusaddress.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusauthobserver.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gdbuserror.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusintrospection.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusmessage.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusmethodinvocation.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusnameowning.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusnamewatching.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusproxy.h + + + +1357747355 /usr/include/glib-2.0/gio/gdbusserver.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusutils.h + + +1357747355 /usr/include/glib-2.0/gio/gdrive.h + + +1357747355 /usr/include/glib-2.0/gio/gemblemedicon.h + + + +1357747355 /usr/include/glib-2.0/gio/gicon.h + + +1357747355 /usr/include/glib-2.0/gio/gemblem.h + + +1357747355 /usr/include/glib-2.0/gio/gfileattribute.h + + +1357747355 /usr/include/glib-2.0/gio/gfileenumerator.h + + +1357747355 /usr/include/glib-2.0/gio/gfile.h + + +1357747355 /usr/include/glib-2.0/gio/gfileicon.h + + +1357747355 /usr/include/glib-2.0/gio/gfileinfo.h + + +1357747355 /usr/include/glib-2.0/gio/gfileinputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gfileiostream.h + + +1357747355 /usr/include/glib-2.0/gio/giostream.h + + + + + +1357747355 /usr/include/glib-2.0/gio/gioerror.h + + + +1357747355 /usr/include/glib-2.0/gio/gfilemonitor.h + + +1357747355 /usr/include/glib-2.0/gio/gfilenamecompleter.h + + +1357747355 /usr/include/glib-2.0/gio/gfileoutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/ginetaddress.h + + +1357747355 /usr/include/glib-2.0/gio/ginetaddressmask.h + + +1357747355 /usr/include/glib-2.0/gio/ginetsocketaddress.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketaddress.h + + +1357747355 /usr/include/glib-2.0/gio/gioenumtypes.h + + +1357747355 /usr/include/glib-2.0/gio/giomodule.h + + + +1357747353 /usr/include/glib-2.0/gmodule.h + + +1357747355 /usr/include/glib-2.0/gio/gioscheduler.h + + +1357747355 /usr/include/glib-2.0/gio/gloadableicon.h + + +1357747355 /usr/include/glib-2.0/gio/gmemoryinputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gmemoryoutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gmount.h + + +1357747355 /usr/include/glib-2.0/gio/gmountoperation.h + + +1357747355 /usr/include/glib-2.0/gio/gnativevolumemonitor.h + + +1357747355 /usr/include/glib-2.0/gio/gvolumemonitor.h + + +1357747355 /usr/include/glib-2.0/gio/gnetworkaddress.h + + +1357747355 /usr/include/glib-2.0/gio/gnetworkmonitor.h + + +1357747355 /usr/include/glib-2.0/gio/gnetworkservice.h + + +1357747355 /usr/include/glib-2.0/gio/gpermission.h + + +1357747355 /usr/include/glib-2.0/gio/gpollableinputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gpollableoutputstream.h + + +1357747355 /usr/include/glib-2.0/gio/gproxy.h + + +1357747355 /usr/include/glib-2.0/gio/gproxyaddress.h + + +1357747355 /usr/include/glib-2.0/gio/gproxyaddressenumerator.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketaddressenumerator.h + + +1357747355 /usr/include/glib-2.0/gio/gproxyresolver.h + + +1357747355 /usr/include/glib-2.0/gio/gresolver.h + + +1357747355 /usr/include/glib-2.0/gio/gresource.h + + +1357747355 /usr/include/glib-2.0/gio/gseekable.h + + +1357747355 /usr/include/glib-2.0/gio/gsettingsschema.h + + +1357747355 /usr/include/glib-2.0/gio/gsettings.h + + + +1357747355 /usr/include/glib-2.0/gio/gsimpleaction.h + + +1357747355 /usr/include/glib-2.0/gio/gsimpleactiongroup.h + "gactiongroup.h" + "gactionmap.h" + +1357747355 /usr/include/glib-2.0/gio/gsimpleasyncresult.h + + +1357747355 /usr/include/glib-2.0/gio/gsimplepermission.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketclient.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketconnectable.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketconnection.h + + + + +1357747355 /usr/include/glib-2.0/gio/gsocket.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketcontrolmessage.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketlistener.h + + +1357747355 /usr/include/glib-2.0/gio/gsocketservice.h + + +1357747355 /usr/include/glib-2.0/gio/gsrvtarget.h + + +1357747355 /usr/include/glib-2.0/gio/gtcpconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gtcpwrapperconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gthemedicon.h + + +1357747355 /usr/include/glib-2.0/gio/gthreadedsocketservice.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsbackend.h + + +1357747355 /usr/include/glib-2.0/gio/gtlscertificate.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsclientconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsdatabase.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsfiledatabase.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsinteraction.h + + +1357747355 /usr/include/glib-2.0/gio/gtlsserverconnection.h + + +1357747355 /usr/include/glib-2.0/gio/gtlspassword.h + + +1357747355 /usr/include/glib-2.0/gio/gvfs.h + + +1357747355 /usr/include/glib-2.0/gio/gvolume.h + + +1357747355 /usr/include/glib-2.0/gio/gzlibcompressor.h + + + +1357747355 /usr/include/glib-2.0/gio/gzlibdecompressor.h + + + +1357747355 /usr/include/glib-2.0/gio/gdbusinterface.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusinterfaceskeleton.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobject.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectskeleton.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectproxy.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanager.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanagerclient.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusobjectmanagerserver.h + + +1357747355 /usr/include/glib-2.0/gio/gdbusactiongroup.h + "giotypes.h" + +1357747355 /usr/include/glib-2.0/gio/gremoteactiongroup.h + + +1357747355 /usr/include/glib-2.0/gio/gmenumodel.h + + + +1357747355 /usr/include/glib-2.0/gio/gmenu.h + + +1357747355 /usr/include/glib-2.0/gio/gmenuexporter.h + + + +1357747355 /usr/include/glib-2.0/gio/gdbusmenumodel.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdktypes.h + + + + + + +1333224566 /usr/include/pango-1.0/pango/pango.h + + + + + + + + + + + + + + + + + + + + + + + +1333224566 /usr/include/pango-1.0/pango/pango-attributes.h + + + +1333224566 /usr/include/pango-1.0/pango/pango-font.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-coverage.h + + +1333224566 /usr/include/pango-1.0/pango/pango-types.h + + + + + + + + +1333224566 /usr/include/pango-1.0/pango/pango-gravity.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-matrix.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-script.h + + + +1333224566 /usr/include/pango-1.0/pango/pango-language.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-bidi-type.h + + +1333224566 /usr/include/pango-1.0/pango/pango-break.h + + + +1333224566 /usr/include/pango-1.0/pango/pango-item.h + + +1333224566 /usr/include/pango-1.0/pango/pango-context.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-fontmap.h + + + +1333224566 /usr/include/pango-1.0/pango/pango-fontset.h + + + + +1333224566 /usr/include/pango-1.0/pango/pango-engine.h + + + + + + + +1333224566 /usr/include/pango-1.0/pango/pango-glyph.h + + + +1333224566 /usr/include/pango-1.0/pango/pango-enum-types.h + + +1333224566 /usr/include/pango-1.0/pango/pango-features.h + +1333224566 /usr/include/pango-1.0/pango/pango-glyph-item.h + + + + + +1333224566 /usr/include/pango-1.0/pango/pango-layout.h + + + + + +1333224566 /usr/include/pango-1.0/pango/pango-tabs.h + + +1333224566 /usr/include/pango-1.0/pango/pango-renderer.h + + +1333224566 /usr/include/pango-1.0/pango/pango-utils.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 + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkdisplay.h + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkevents.h + + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkcolor.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkdnd.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkdevice.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkdevicemanager.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkcairo.h + + + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkrgba.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkpixbuf.h + + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h + + + + + + + + + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-features.h + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h + + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-transform.h + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-animation.h + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-simple-anim.h + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-io.h + + + + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-loader.h + + + + + + +1334553772 /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h + + +1333224566 /usr/include/pango-1.0/pango/pangocairo.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkcursor.h + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkdisplaymanager.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkenumtypes.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkkeys.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkkeysyms.h + +1386191031 /usr/include/gtk-3.0/gdk/gdkmain.h + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkpango.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkproperty.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkrectangle.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkselection.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdktestutils.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkwindow.h + + + + +1386191031 /usr/include/gtk-3.0/gdk/gdkthreads.h + + +1386191031 /usr/include/gtk-3.0/gdk/gdkvisual.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaboutdialog.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkdialog.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkwindow.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkapplication.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkwidget.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccelgroup.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkenums.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkborder.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktypes.h + +1333329226 /usr/include/atk-1.0/atk/atk.h + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1333329226 /usr/include/atk-1.0/atk/atkobject.h + + + + +1333329226 /usr/include/atk-1.0/atk/atkstate.h + + +1333329226 /usr/include/atk-1.0/atk/atkrelationtype.h + + +1333329226 /usr/include/atk-1.0/atk/atkaction.h + + +1333329226 /usr/include/atk-1.0/atk/atkcomponent.h + + + +1333329226 /usr/include/atk-1.0/atk/atkutil.h + + +1333329226 /usr/include/atk-1.0/atk/atkdocument.h + + + +1333329226 /usr/include/atk-1.0/atk/atkeditabletext.h + + + +1333329226 /usr/include/atk-1.0/atk/atktext.h + + + + +1333329226 /usr/include/atk-1.0/atk/atkgobjectaccessible.h + + +1333329226 /usr/include/atk-1.0/atk/atkhyperlink.h + + +1333329226 /usr/include/atk-1.0/atk/atkhyperlinkimpl.h + + + +1333329226 /usr/include/atk-1.0/atk/atkhypertext.h + + + +1333329226 /usr/include/atk-1.0/atk/atkimage.h + + + +1333329226 /usr/include/atk-1.0/atk/atknoopobject.h + +1333329226 /usr/include/atk-1.0/atk/atknoopobjectfactory.h + + +1333329226 /usr/include/atk-1.0/atk/atkobjectfactory.h + + + +1333329226 /usr/include/atk-1.0/atk/atkplug.h + +1333329226 /usr/include/atk-1.0/atk/atkregistry.h + + "atkobjectfactory.h" + +1333329226 /usr/include/atk-1.0/atk/atkrelation.h + + + +1333329226 /usr/include/atk-1.0/atk/atkrelationset.h + + + + +1333329226 /usr/include/atk-1.0/atk/atkselection.h + + +1333329226 /usr/include/atk-1.0/atk/atksocket.h + +1333329226 /usr/include/atk-1.0/atk/atkstateset.h + + + + +1333329226 /usr/include/atk-1.0/atk/atkstreamablecontent.h + + +1333329226 /usr/include/atk-1.0/atk/atktable.h + + +1333329226 /usr/include/atk-1.0/atk/atkmisc.h + + +1333329226 /usr/include/atk-1.0/atk/atkvalue.h + + +1333329226 /usr/include/atk-1.0/atk/atkwindow.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbin.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcontainer.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccellabel.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtklabel.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmisc.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenu.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenushell.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccelmap.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaccessible.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaction.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkactionable.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkactiongroup.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstock.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkactivatable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkadjustment.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkalignment.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooser.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserdialog.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserwidget.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkappchooserbutton.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcombobox.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodel.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeview.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderer.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcelleditable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreesortable.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellarea.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkdnd.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkselection.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextiter.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextattributes.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextchild.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktexttag.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkentry.h + + + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkeditable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontext.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkentrybuffer.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkentrycompletion.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkliststore.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodelfilter.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimage.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkapplicationwindow.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkarrow.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkaspectframe.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkframe.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkassistant.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbindings.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbuildable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbuilder.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkbutton.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcalendar.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellareabox.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellareacontext.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcelllayout.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderertext.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererspin.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcellview.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcheckbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktogglebutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkclipboard.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooser.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcolorutils.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcomboboxtext.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcssprovider.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkcsssection.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkdebug.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkdrawingarea.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkeventbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkexpander.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfixed.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooser.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilefilter.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooser.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkgradient.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstylecontext.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstyleprovider.h + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkiconfactory.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstyleproperties.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtksymboliccolor.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkgrid.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkicontheme.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkiconview.h + + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktooltip.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimagemenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontextinfo.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimcontextsimple.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkimmulticontext.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkinfobar.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkinvisible.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtklayout.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtklinkbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtklockbutton.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmain.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenubar.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolitem.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtksizegroup.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmessagedialog.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmodules.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkmountoperation.h + +1386191034 /usr/include/gtk-3.0/gtk/gtknotebook.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtknumerableicon.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkorientable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkoverlay.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkpagesetup.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkpapersize.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkpaned.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintcontext.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintoperation.h + + + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintsettings.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkprogressbar.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkradioaction.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoggleaction.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiobutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiomenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrange.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentaction.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentmanager.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooser.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentfilter.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkscale.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkscalebutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrollable.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrollbar.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkscrolledwindow.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparator.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtksettings.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkshow.h + +1386191034 /usr/include/gtk-3.0/gtk/gtksizerequest.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkspinbutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkspinner.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstatusbar.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkstatusicon.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkswitch.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextbuffer.h + + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktexttagtable.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextmark.h + +1386191034 /usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktextview.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkthemingengine.h + + + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolbar.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolitemgroup.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolpalette.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktoolshell.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktestutils.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreednd.h + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreemodelsort.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreeselection.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtktreestore.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtktypebuiltins.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkuimanager.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/gtkversion.h + +1386191034 /usr/include/gtk-3.0/gtk/gtkviewport.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkvolumebutton.h + + +1386191034 /usr/include/gtk-3.0/gtk/gtkwidgetpath.h + + + + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h + + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h + + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h + + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkrc.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h + + + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtktable.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h + + +1386191034 /usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.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" + + + + + +1426244841 /home/loic/Documents/c/forgetIt/src/CryptClass/AbstractSKA.hpp + + +1426244841 /home/loic/Documents/c/forgetIt/src/CryptClass/HASHCrypt.hpp + + + + + + + +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 + + + + "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 + + + + + + +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 + + + "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 + + + + + "Website.hpp" + + + +1426411468 source:/home/loic/Documents/c/forgetIt/src/main.cpp + + + + "FileManIOFile.hpp" + "FileManParser.hpp" + "Website.hpp" + + 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 @@ + + + + + + + + + + + + + + + + + + + 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 new file mode 100644 index 0000000..ef6f1e1 Binary files /dev/null and b/Untracked/obj/Debug/CryptClass/AESCrypt.o differ diff --git a/Untracked/obj/Debug/CryptClass/HASHCrypt.o b/Untracked/obj/Debug/CryptClass/HASHCrypt.o new file mode 100644 index 0000000..3e4d6e8 Binary files /dev/null and b/Untracked/obj/Debug/CryptClass/HASHCrypt.o differ diff --git a/Untracked/obj/Debug/IOFileClass/FileManIOFile.o b/Untracked/obj/Debug/IOFileClass/FileManIOFile.o new file mode 100644 index 0000000..a09c323 Binary files /dev/null and b/Untracked/obj/Debug/IOFileClass/FileManIOFile.o differ diff --git a/Untracked/obj/Debug/ParserClass/AbstractContainer.o b/Untracked/obj/Debug/ParserClass/AbstractContainer.o new file mode 100644 index 0000000..bd03529 Binary files /dev/null and b/Untracked/obj/Debug/ParserClass/AbstractContainer.o differ diff --git a/Untracked/obj/Debug/ParserClass/AbstractIDManager.o b/Untracked/obj/Debug/ParserClass/AbstractIDManager.o new file mode 100644 index 0000000..9db6000 Binary files /dev/null and b/Untracked/obj/Debug/ParserClass/AbstractIDManager.o differ diff --git a/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o b/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o new file mode 100644 index 0000000..9a0430b Binary files /dev/null and b/Untracked/obj/Debug/ParserClass/FileManContainer/FileManContainer.o differ diff --git a/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o b/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o new file mode 100644 index 0000000..956cdbe Binary files /dev/null and b/Untracked/obj/Debug/ParserClass/FileManContainer/Website.o differ diff --git a/Untracked/obj/Debug/ParserClass/FileManParser.o b/Untracked/obj/Debug/ParserClass/FileManParser.o new file mode 100644 index 0000000..f224850 Binary files /dev/null and b/Untracked/obj/Debug/ParserClass/FileManParser.o differ diff --git a/Untracked/obj/Debug/crypto++/AESCrypt.o b/Untracked/obj/Debug/crypto++/AESCrypt.o new file mode 100644 index 0000000..30db994 Binary files /dev/null and b/Untracked/obj/Debug/crypto++/AESCrypt.o differ diff --git a/Untracked/obj/Debug/crypto++/HASHCrypt.o b/Untracked/obj/Debug/crypto++/HASHCrypt.o new file mode 100644 index 0000000..7c82f7e Binary files /dev/null and b/Untracked/obj/Debug/crypto++/HASHCrypt.o differ diff --git a/Untracked/obj/Debug/crypto++/MD5Crypt.o b/Untracked/obj/Debug/crypto++/MD5Crypt.o new file mode 100644 index 0000000..f75d41c Binary files /dev/null and b/Untracked/obj/Debug/crypto++/MD5Crypt.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/3way.o b/Untracked/obj/Debug/libs/crypto++/3way.o new file mode 100644 index 0000000..017161f Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/3way.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/adler32.o b/Untracked/obj/Debug/libs/crypto++/adler32.o new file mode 100644 index 0000000..303d08e Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/adler32.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/algebra.o b/Untracked/obj/Debug/libs/crypto++/algebra.o new file mode 100644 index 0000000..c48afd2 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/algebra.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/algparam.o b/Untracked/obj/Debug/libs/crypto++/algparam.o new file mode 100644 index 0000000..b986b3e Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/algparam.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/arc4.o b/Untracked/obj/Debug/libs/crypto++/arc4.o new file mode 100644 index 0000000..5db17ff Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/arc4.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/asn.o b/Untracked/obj/Debug/libs/crypto++/asn.o new file mode 100644 index 0000000..a0bd264 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/asn.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/authenc.o b/Untracked/obj/Debug/libs/crypto++/authenc.o new file mode 100644 index 0000000..274bbe7 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/authenc.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/base32.o b/Untracked/obj/Debug/libs/crypto++/base32.o new file mode 100644 index 0000000..ee6ab71 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/base32.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/base64.o b/Untracked/obj/Debug/libs/crypto++/base64.o new file mode 100644 index 0000000..a87ef19 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/base64.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/basecode.o b/Untracked/obj/Debug/libs/crypto++/basecode.o new file mode 100644 index 0000000..578c836 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/basecode.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/bench.o b/Untracked/obj/Debug/libs/crypto++/bench.o new file mode 100644 index 0000000..218cc28 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/bench.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/bench2.o b/Untracked/obj/Debug/libs/crypto++/bench2.o new file mode 100644 index 0000000..d74c84b Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/bench2.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/bfinit.o b/Untracked/obj/Debug/libs/crypto++/bfinit.o new file mode 100644 index 0000000..b5bba86 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/bfinit.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/blowfish.o b/Untracked/obj/Debug/libs/crypto++/blowfish.o new file mode 100644 index 0000000..f1a0fa7 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/blowfish.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/blumshub.o b/Untracked/obj/Debug/libs/crypto++/blumshub.o new file mode 100644 index 0000000..06504e4 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/blumshub.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/camellia.o b/Untracked/obj/Debug/libs/crypto++/camellia.o new file mode 100644 index 0000000..6859993 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/camellia.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cast.o b/Untracked/obj/Debug/libs/crypto++/cast.o new file mode 100644 index 0000000..a8407c8 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cast.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/casts.o b/Untracked/obj/Debug/libs/crypto++/casts.o new file mode 100644 index 0000000..e08c139 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/casts.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cbcmac.o b/Untracked/obj/Debug/libs/crypto++/cbcmac.o new file mode 100644 index 0000000..4dfc6c7 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cbcmac.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/ccm.o b/Untracked/obj/Debug/libs/crypto++/ccm.o new file mode 100644 index 0000000..b8a6a62 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/ccm.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/channels.o b/Untracked/obj/Debug/libs/crypto++/channels.o new file mode 100644 index 0000000..d3481fb Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/channels.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cmac.o b/Untracked/obj/Debug/libs/crypto++/cmac.o new file mode 100644 index 0000000..231641f Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cmac.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cpu.o b/Untracked/obj/Debug/libs/crypto++/cpu.o new file mode 100644 index 0000000..412f221 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cpu.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/crc.o b/Untracked/obj/Debug/libs/crypto++/crc.o new file mode 100644 index 0000000..72cec78 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/crc.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cryptlib.o b/Untracked/obj/Debug/libs/crypto++/cryptlib.o new file mode 100644 index 0000000..bd6b152 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cryptlib.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o b/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o new file mode 100644 index 0000000..dc438ab Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/cryptlib_bds.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/datatest.o b/Untracked/obj/Debug/libs/crypto++/datatest.o new file mode 100644 index 0000000..8e1f465 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/datatest.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/default.o b/Untracked/obj/Debug/libs/crypto++/default.o new file mode 100644 index 0000000..8c73b16 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/default.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/des.o b/Untracked/obj/Debug/libs/crypto++/des.o new file mode 100644 index 0000000..27d1b5f Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/des.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dessp.o b/Untracked/obj/Debug/libs/crypto++/dessp.o new file mode 100644 index 0000000..8212f51 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dessp.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dh.o b/Untracked/obj/Debug/libs/crypto++/dh.o new file mode 100644 index 0000000..0612881 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dh.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dh2.o b/Untracked/obj/Debug/libs/crypto++/dh2.o new file mode 100644 index 0000000..b08cd5d Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dh2.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dll.o b/Untracked/obj/Debug/libs/crypto++/dll.o new file mode 100644 index 0000000..3a90730 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dll.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dlltest.o b/Untracked/obj/Debug/libs/crypto++/dlltest.o new file mode 100644 index 0000000..82f93c7 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dlltest.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/dsa.o b/Untracked/obj/Debug/libs/crypto++/dsa.o new file mode 100644 index 0000000..7f78a8c Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/dsa.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/eax.o b/Untracked/obj/Debug/libs/crypto++/eax.o new file mode 100644 index 0000000..7fa72ff Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/eax.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/ec2n.o b/Untracked/obj/Debug/libs/crypto++/ec2n.o new file mode 100644 index 0000000..68f6419 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/ec2n.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/eccrypto.o b/Untracked/obj/Debug/libs/crypto++/eccrypto.o new file mode 100644 index 0000000..e1039c7 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/eccrypto.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/ecp.o b/Untracked/obj/Debug/libs/crypto++/ecp.o new file mode 100644 index 0000000..ecee1fe Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/ecp.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/elgamal.o b/Untracked/obj/Debug/libs/crypto++/elgamal.o new file mode 100644 index 0000000..0794a33 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/elgamal.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/emsa2.o b/Untracked/obj/Debug/libs/crypto++/emsa2.o new file mode 100644 index 0000000..e46aea2 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/emsa2.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/eprecomp.o b/Untracked/obj/Debug/libs/crypto++/eprecomp.o new file mode 100644 index 0000000..ab6d167 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/eprecomp.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/esign.o b/Untracked/obj/Debug/libs/crypto++/esign.o new file mode 100644 index 0000000..4c4ca7b Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/esign.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/files.o b/Untracked/obj/Debug/libs/crypto++/files.o new file mode 100644 index 0000000..345fd07 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/files.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/filters.o b/Untracked/obj/Debug/libs/crypto++/filters.o new file mode 100644 index 0000000..f752ed2 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/filters.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/fips140.o b/Untracked/obj/Debug/libs/crypto++/fips140.o new file mode 100644 index 0000000..8c1262a Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/fips140.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/fipsalgt.o b/Untracked/obj/Debug/libs/crypto++/fipsalgt.o new file mode 100644 index 0000000..991dd36 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/fipsalgt.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/fipstest.o b/Untracked/obj/Debug/libs/crypto++/fipstest.o new file mode 100644 index 0000000..fd05c58 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/fipstest.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gcm.o b/Untracked/obj/Debug/libs/crypto++/gcm.o new file mode 100644 index 0000000..df61a0d Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gcm.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gf256.o b/Untracked/obj/Debug/libs/crypto++/gf256.o new file mode 100644 index 0000000..917d30d Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gf256.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gf2_32.o b/Untracked/obj/Debug/libs/crypto++/gf2_32.o new file mode 100644 index 0000000..3dfae94 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gf2_32.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gf2n.o b/Untracked/obj/Debug/libs/crypto++/gf2n.o new file mode 100644 index 0000000..980cb2d Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gf2n.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o b/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o new file mode 100644 index 0000000..efb022f Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gfpcrypt.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gost.o b/Untracked/obj/Debug/libs/crypto++/gost.o new file mode 100644 index 0000000..ed76dd9 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gost.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/gzip.o b/Untracked/obj/Debug/libs/crypto++/gzip.o new file mode 100644 index 0000000..06ee375 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/gzip.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/hex.o b/Untracked/obj/Debug/libs/crypto++/hex.o new file mode 100644 index 0000000..a3470bb Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/hex.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/hmac.o b/Untracked/obj/Debug/libs/crypto++/hmac.o new file mode 100644 index 0000000..6091fcb Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/hmac.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/hrtimer.o b/Untracked/obj/Debug/libs/crypto++/hrtimer.o new file mode 100644 index 0000000..188d505 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/hrtimer.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/ida.o b/Untracked/obj/Debug/libs/crypto++/ida.o new file mode 100644 index 0000000..7c09f45 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/ida.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/idea.o b/Untracked/obj/Debug/libs/crypto++/idea.o new file mode 100644 index 0000000..e087070 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/idea.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/integer.o b/Untracked/obj/Debug/libs/crypto++/integer.o new file mode 100644 index 0000000..ec94323 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/integer.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/iterhash.o b/Untracked/obj/Debug/libs/crypto++/iterhash.o new file mode 100644 index 0000000..b913791 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/iterhash.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/luc.o b/Untracked/obj/Debug/libs/crypto++/luc.o new file mode 100644 index 0000000..c8472c5 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/luc.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/mars.o b/Untracked/obj/Debug/libs/crypto++/mars.o new file mode 100644 index 0000000..47cbf6e Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/mars.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/marss.o b/Untracked/obj/Debug/libs/crypto++/marss.o new file mode 100644 index 0000000..8d56915 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/marss.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/md2.o b/Untracked/obj/Debug/libs/crypto++/md2.o new file mode 100644 index 0000000..3f6ee82 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/md2.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/md4.o b/Untracked/obj/Debug/libs/crypto++/md4.o new file mode 100644 index 0000000..7029056 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/md4.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/md5.o b/Untracked/obj/Debug/libs/crypto++/md5.o new file mode 100644 index 0000000..6245965 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/md5.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/misc.o b/Untracked/obj/Debug/libs/crypto++/misc.o new file mode 100644 index 0000000..4ae7017 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/misc.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/modes.o b/Untracked/obj/Debug/libs/crypto++/modes.o new file mode 100644 index 0000000..c2c19ff Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/modes.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/mqueue.o b/Untracked/obj/Debug/libs/crypto++/mqueue.o new file mode 100644 index 0000000..e010503 Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/mqueue.o differ diff --git a/Untracked/obj/Debug/libs/crypto++/mqv.o b/Untracked/obj/Debug/libs/crypto++/mqv.o new file mode 100644 index 0000000..eb2760f Binary files /dev/null and b/Untracked/obj/Debug/libs/crypto++/mqv.o differ diff --git a/Untracked/obj/Debug/main.o b/Untracked/obj/Debug/main.o new file mode 100644 index 0000000..f435115 Binary files /dev/null and b/Untracked/obj/Debug/main.o differ diff --git a/Untracked/obj/Debug/src/CryptClass/AESCrypt.o b/Untracked/obj/Debug/src/CryptClass/AESCrypt.o new file mode 100644 index 0000000..cc89ed2 Binary files /dev/null and b/Untracked/obj/Debug/src/CryptClass/AESCrypt.o differ diff --git a/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o b/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o new file mode 100644 index 0000000..e5148e1 Binary files /dev/null and b/Untracked/obj/Debug/src/CryptClass/HASHCrypt.o differ diff --git a/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o b/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o new file mode 100644 index 0000000..1ae64c5 Binary files /dev/null and b/Untracked/obj/Debug/src/IOFileClass/FileManIOFile.o differ diff --git a/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o b/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o new file mode 100644 index 0000000..c425e11 Binary files /dev/null and b/Untracked/obj/Debug/src/ParserClass/AbstractIDManager.o differ diff --git a/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o b/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o new file mode 100644 index 0000000..dea9935 Binary files /dev/null and b/Untracked/obj/Debug/src/ParserClass/FileManContainer/Website.o differ diff --git a/Untracked/obj/Debug/src/ParserClass/FileManParser.o b/Untracked/obj/Debug/src/ParserClass/FileManParser.o new file mode 100644 index 0000000..3eb9754 Binary files /dev/null and b/Untracked/obj/Debug/src/ParserClass/FileManParser.o differ diff --git a/Untracked/obj/Debug/src/main.o b/Untracked/obj/Debug/src/main.o new file mode 100644 index 0000000..8832a80 Binary files /dev/null and b/Untracked/obj/Debug/src/main.o differ