├── Table.h ├── stu.dbf ├── Praser.cpp ├── Table.cpp ├── Test.dbf ├── dbf ├── dbf.h ├── dbf.cpp ├── DBFBase.h ├── DBFEngine.pro └── DBFBase.cpp ├── ql_Manager.h ├── ql_select.h ├── ql_Manager.cpp ├── ql_insert.cpp ├── ql_select.cpp ├── ql_delete.h ├── ql_delete.cpp ├── SelectTable.cpp ├── SelectTable.h ├── ql_update.h ├── BaseTable.h ├── ql_insert.h ├── BaseTable.cpp ├── ql_create.h ├── ql_update.cpp ├── LICENSE ├── readme.md ├── Praser.h ├── database.sln ├── ql_create.cpp ├── .gitattributes ├── database.vcxproj.filters ├── .gitignore ├── main.cpp ├── database.vcxproj └── ClassDiagram.cd /Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/Table.h -------------------------------------------------------------------------------- /stu.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/stu.dbf -------------------------------------------------------------------------------- /Praser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/Praser.cpp -------------------------------------------------------------------------------- /Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/Table.cpp -------------------------------------------------------------------------------- /Test.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/Test.dbf -------------------------------------------------------------------------------- /dbf/dbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/dbf/dbf.h -------------------------------------------------------------------------------- /dbf/dbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/dbf/dbf.cpp -------------------------------------------------------------------------------- /ql_Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/ql_Manager.h -------------------------------------------------------------------------------- /ql_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/ql_select.h -------------------------------------------------------------------------------- /dbf/DBFBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/dbf/DBFBase.h -------------------------------------------------------------------------------- /ql_Manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/ql_Manager.cpp -------------------------------------------------------------------------------- /ql_insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/ql_insert.cpp -------------------------------------------------------------------------------- /ql_select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donglinz/database/HEAD/ql_select.cpp -------------------------------------------------------------------------------- /ql_delete.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class ql_delete 3 | { 4 | public: 5 | ql_delete(); 6 | ~ql_delete(); 7 | }; 8 | 9 | -------------------------------------------------------------------------------- /ql_delete.cpp: -------------------------------------------------------------------------------- 1 | #include "ql_delete.h" 2 | 3 | 4 | 5 | ql_delete::ql_delete() 6 | { 7 | } 8 | 9 | 10 | ql_delete::~ql_delete() 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /SelectTable.cpp: -------------------------------------------------------------------------------- 1 | #include "SelectTable.h" 2 | 3 | 4 | 5 | SelectTable::SelectTable() 6 | { 7 | distinct = false; 8 | } 9 | 10 | Table SelectTable::getTable() 11 | { 12 | return Table(); 13 | } 14 | 15 | 16 | SelectTable::~SelectTable() 17 | { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /SelectTable.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "BaseTable.h" 3 | class SelectTable : 4 | public BaseTable 5 | { 6 | public: 7 | SelectTable(); 8 | virtual Table getTable(); 9 | std::string whrere; 10 | string groupby; 11 | std::vector orderby; 12 | bool distinct; 13 | ~SelectTable(); 14 | }; 15 | 16 | -------------------------------------------------------------------------------- /ql_update.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "dbf\dbf.h" 4 | #include "Praser.h" 5 | #include "Table.h" 6 | class ql_update 7 | { 8 | public: 9 | ql_update(string q); 10 | ~ql_update(); 11 | void run(); 12 | string q_line; 13 | string fileName; 14 | private: 15 | const string where = "where"; 16 | }; 17 | 18 | -------------------------------------------------------------------------------- /BaseTable.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "Table.h" 3 | class BaseTable 4 | { 5 | public: 6 | BaseTable(); 7 | void open(string fileName); 8 | void markAsDelete(int nLineNumber); 9 | void runDelete(); 10 | virtual Table getTable(); 11 | Table m_table; 12 | std::shared_ptr from; 13 | ~BaseTable(); 14 | protected: 15 | bool isChanged; 16 | }; 17 | 18 | -------------------------------------------------------------------------------- /ql_insert.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #include "dbf\dbf.h" 6 | #include "Praser.h" 7 | 8 | class ql_insert 9 | { 10 | public: 11 | ql_insert(string q); 12 | ~ql_insert(); 13 | void run(); 14 | string q_line; 15 | 16 | string fileName; 17 | 18 | private: 19 | const string into = "into"; 20 | const string values = "values"; 21 | }; 22 | 23 | -------------------------------------------------------------------------------- /BaseTable.cpp: -------------------------------------------------------------------------------- 1 | #include "BaseTable.h" 2 | 3 | 4 | 5 | BaseTable::BaseTable() 6 | { 7 | isChanged = false; 8 | } 9 | 10 | void BaseTable::open(string fileName) 11 | { 12 | } 13 | 14 | void BaseTable::markAsDelete(int nLineNumber) 15 | { 16 | } 17 | 18 | void BaseTable::runDelete() 19 | { 20 | } 21 | 22 | Table BaseTable::getTable() 23 | { 24 | return m_table; 25 | } 26 | 27 | BaseTable::~BaseTable() 28 | { 29 | } 30 | -------------------------------------------------------------------------------- /dbf/DBFEngine.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 2013-01-30T15:01:46 4 | # 5 | #------------------------------------------------- 6 | 7 | QT += core 8 | 9 | QT -= gui 10 | 11 | TARGET = DBFEngine 12 | CONFIG += console 13 | CONFIG -= app_bundle 14 | 15 | TEMPLATE = app 16 | 17 | 18 | SOURCES += main.cpp \ 19 | dbf.cpp 20 | 21 | HEADERS += \ 22 | dbf.h 23 | -------------------------------------------------------------------------------- /ql_create.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #include "Table.h" 6 | #include "Praser.h" 7 | 8 | 9 | class ql_create 10 | { 11 | public: 12 | ql_create(string q); 13 | ~ql_create(); 14 | string q_line; 15 | void run(); 16 | 17 | private: 18 | string fileName; 19 | const string type_int = "int"; 20 | const string type_double = "double"; 21 | const string type_date = "date"; 22 | const string type_char = "char"; 23 | const string type_bool = "bool"; 24 | const string type_varchar = "varchar"; 25 | }; 26 | 27 | -------------------------------------------------------------------------------- /ql_update.cpp: -------------------------------------------------------------------------------- 1 | #include "ql_update.h" 2 | 3 | 4 | 5 | ql_update::ql_update(string q) : q_line(q) 6 | { 7 | } 8 | 9 | 10 | ql_update::~ql_update() 11 | { 12 | } 13 | 14 | void ql_update::run() 15 | { 16 | q_line = Praser::trim(q_line); 17 | q_line = Praser::toLowerString(q_line); 18 | std::vector vec = Praser::split(q_line, ' '); 19 | string s_condition; 20 | s_condition = vec.back(); 21 | fileName = vec[1]; 22 | Table m_table; 23 | m_table.open(fileName + ".dbf", true); 24 | 25 | string key = Praser::split(vec[3], '=')[0]; 26 | string val = Praser::split(vec[3], '=')[1]; 27 | for (int nRec = 0; nRec < m_table.numRecord(); ++nRec) { 28 | bool match = false; 29 | m_table.isMatch(nRec, s_condition, match); 30 | if (match) { 31 | m_table.setRecord(nRec, key, val); 32 | } 33 | } 34 | m_table.close(); 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2012 Ron Ostafichuk 2 | // 3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files 4 | // (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, 5 | // merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is 6 | // furnished to do so, subject to the following conditions: 7 | // 8 | // The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 9 | // 10 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 11 | // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 12 | // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 13 | // IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /dbf/DBFBase.cpp: -------------------------------------------------------------------------------- 1 | #include "DBFBase.h" 2 | 3 | fieldDefinition TypeString() 4 | { 5 | fieldDefinition fd; 6 | memset(&fd, 0, sizeof fd); 7 | fd.cFieldType = 'C'; 8 | fd.uLength = 10; 9 | return fd; 10 | } 11 | 12 | fieldDefinition TypeDate() 13 | { 14 | fieldDefinition fd; 15 | memset(&fd, 0, sizeof fd); 16 | fd.cFieldType = 'D'; 17 | fd.uLength = 8; 18 | return fd; 19 | } 20 | 21 | fieldDefinition TypeDouble() 22 | { 23 | fieldDefinition fd; 24 | memset(&fd, 0, sizeof fd); 25 | fd.cFieldType = 'F'; 26 | fd.uLength = 8; 27 | return fd; 28 | } 29 | 30 | fieldDefinition TypeInteger() 31 | { 32 | fieldDefinition fd; 33 | memset(&fd, 0, sizeof fd); 34 | fd.cFieldType = 'I'; 35 | fd.uLength = 4; 36 | return fd; 37 | } 38 | 39 | fieldDefinition TypeBoolean() 40 | { 41 | fieldDefinition fd; 42 | memset(&fd, 0, sizeof fd); 43 | fd.cFieldType = 'L'; 44 | fd.uLength = 1; 45 | return fd; 46 | } 47 | 48 | fieldDefinition getType(char ch) 49 | { 50 | if (ch == 'C') return TypeString(); 51 | else if (ch == 'D') return TypeDate(); 52 | else if (ch == 'F') return TypeDouble(); 53 | else if (ch == 'I' || ch == 'N') return TypeInteger(); 54 | else if (ch == 'L') return TypeBoolean(); 55 | return TypeString(); 56 | } 57 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | Update 11/20/2019: 2 | 这个项目源自一次仓促的课程设计. 实现的思路质量并不怎么样. 仅供参考. 3 | 4 |

C++ 实现关系型数据库

5 | 基于 C++11从底层实现了DBMS的部分功能,底层存储结构位0x3f版本的dbf文件。 6 |

编译

7 | IDE:Visual Studio 2015及以上   8 | OS:win10 9 | Complier:MSVC++11.0 或更高,必需在64位环境下进行编译 10 |

查询语句

  11 |

Create

12 | 多字段,多数据类型。 13 | 支持int, varchar, char, date, double数据类型 14 | 示例:   15 | 16 | ``` 17 | create table stu ( 18 | id int, 19 | name varchar(20), 20 | sex char, 21 | weight double, 22 | birtyday date 23 | ); 24 | ``` 25 |

Insert

26 | 支持单记录,多记录insert 27 | 示例: 28 | 29 | ``` 30 | insert into stu values (1, 'zhangsan', 'M', 90.0, '1996-10-10'); 31 | insert into stu values (2, 'lisi', 'M', 100.1, '1996-10-10'); 32 | insert into stu values (3, 'tom', 'M', 101.0, '1996-10-11'); 33 | ``` 34 |

Select

  35 | 36 | 单条件,多条件,聚合函数,嵌套查询,对查询结果排序   37 | 38 | 示例1多条件查询: 39 | ``` 40 | select id, name from stu where id>=2&&id<=5 41 | ``` 42 | 43 | 示例2嵌套查询: 44 | ``` 45 | select ID, Firstname from 46 | (select ID, Firstname from 47 | test where date=='2016-10-10') where id==1; 48 | ``` 49 | 50 | 示例3聚合函数:   51 | ``` 52 | select max(weight), sex from stu group by sex having max(weight)>=100; 53 | ``` 54 | 55 | 示例4排序: 56 | 57 | ``` 58 | select ave(weight), birtyday from stu group by birtyday order by weight; 59 | ``` 60 | -------------------------------------------------------------------------------- /Praser.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | class Praser 11 | { 12 | public: 13 | Praser(); 14 | ~Praser(); 15 | static std::string toLowerString(const std::string & t); 16 | static std::string trim(const std::string & t); 17 | static std::string mergeSpaces(const std::string & t); 18 | static int findFirstOf(const std::string & a, const std::string & b, int bpos = 0); 19 | static std::vector resolveField(std::string fields); 20 | static std::vector split(const std::string & a, char ch); 21 | static std::vector split(const std::string & a, std::set se); 22 | 23 | static bool isLegalDate(std::string date); 24 | static std::string noQuotationMarks(const std::string & t); 25 | 26 | static int convertStringToInt(std::string arg); 27 | static double convertStringToDouble(std::string arg); 28 | static int convertDateToInt(std::string arg); 29 | 30 | static std::string convertNumberToString(double arg, bool removeBackDot = false); 31 | 32 | private: 33 | const static std::exception ex_field_error; 34 | const static std::regex re_date; 35 | const static std::vector days; 36 | const static std::set legalOperator; 37 | }; 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /database.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "database", "database.vcxproj", "{D20150D1-8C65-4152-A0A4-552BFE4BD4A1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Debug|x64.ActiveCfg = Debug|x64 17 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Debug|x64.Build.0 = Debug|x64 18 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Debug|x86.ActiveCfg = Debug|Win32 19 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Debug|x86.Build.0 = Debug|Win32 20 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Release|x64.ActiveCfg = Release|x64 21 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Release|x64.Build.0 = Release|x64 22 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Release|x86.ActiveCfg = Release|Win32 23 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /ql_create.cpp: -------------------------------------------------------------------------------- 1 | #include "ql_create.h" 2 | 3 | 4 | 5 | ql_create::ql_create(string q) : q_line(q) 6 | { 7 | } 8 | 9 | 10 | ql_create::~ql_create() 11 | { 12 | } 13 | 14 | void ql_create::run() 15 | { 16 | q_line = Praser::toLowerString(q_line); 17 | fileName = Praser::split(q_line, ' ')[2]; 18 | int p1 = -1, p2 = -1; 19 | for (int i = 0; i < q_line.length(); ++i) { 20 | if (q_line[i] == '(') { 21 | p1 = i; 22 | break; 23 | } 24 | } 25 | 26 | 27 | 28 | q_line = q_line.substr(p1 + 1, q_line.length()); 29 | q_line.pop_back(); 30 | std::vector fields = Praser::split(q_line, ','); 31 | for (string & tmp : fields) { 32 | tmp = Praser::trim(tmp); 33 | } 34 | 35 | DBF newdbf; 36 | int cnt = 0; 37 | newdbf.create(fileName + ".dbf", fields.size()); 38 | for (string field : fields) { 39 | string name = Praser::split(field, ' ')[0]; 40 | string type = Praser::split(field, ' ')[1]; 41 | fieldDefinition fd; 42 | if (Praser::findFirstOf(type, type_int) == 0) { 43 | fd = TypeInteger(); 44 | } 45 | else if (Praser::findFirstOf(type, type_double) == 0) { 46 | fd = TypeDouble(); 47 | } 48 | else if (Praser::findFirstOf(type, type_date) == 0) { 49 | fd = TypeDate(); 50 | } 51 | else if (Praser::findFirstOf(type, type_char) == 0) { 52 | fd = TypeString(); 53 | fd.uLength = 1; 54 | } 55 | else if (Praser::findFirstOf(type, type_bool) == 0) { 56 | fd = TypeString(); 57 | fd.uLength = 1; 58 | } 59 | else if (Praser::findFirstOf(type, type_varchar) == 0) { 60 | fd = TypeString(); 61 | for (int i = 0; i < type.length(); ++i) { 62 | if (type[i] == '(') { 63 | p1 = i; 64 | } 65 | if (type[i] == ')') { 66 | p2 = i; 67 | } 68 | } 69 | std::stringstream ss(type.substr(p1 + 1, p2 - p1 - 1)); 70 | ss >> fd.uLength; 71 | } 72 | strncpy(fd.cFieldName, name.c_str(), 10); 73 | newdbf.assignField(fd, cnt++); 74 | } 75 | newdbf.close(); 76 | } 77 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /database.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | Source Files 23 | 24 | 25 | Source Files 26 | 27 | 28 | Source Files 29 | 30 | 31 | Source Files 32 | 33 | 34 | Source Files 35 | 36 | 37 | Source Files 38 | 39 | 40 | Source Files 41 | 42 | 43 | Source Files 44 | 45 | 46 | Source Files 47 | 48 | 49 | Source Files 50 | 51 | 52 | Source Files 53 | 54 | 55 | Source Files 56 | 57 | 58 | Source Files 59 | 60 | 61 | Source Files 62 | 63 | 64 | Source Files 65 | 66 | 67 | Source Files 68 | 69 | 70 | Source Files 71 | 72 | 73 | 74 | 75 | Header Files 76 | 77 | 78 | Header Files 79 | 80 | 81 | Header Files 82 | 83 | 84 | Header Files 85 | 86 | 87 | Header Files 88 | 89 | 90 | Header Files 91 | 92 | 93 | Header Files 94 | 95 | 96 | Header Files 97 | 98 | 99 | Header Files 100 | 101 | 102 | Header Files 103 | 104 | 105 | Header Files 106 | 107 | 108 | Header Files 109 | 110 | 111 | Header Files 112 | 113 | 114 | Header Files 115 | 116 | 117 | Header Files 118 | 119 | 120 | Header Files 121 | 122 | 123 | Header Files 124 | 125 | 126 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | [Xx]64/ 19 | [Xx]86/ 20 | [Bb]uild/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | 85 | # Visual Studio profiler 86 | *.psess 87 | *.vsp 88 | *.vspx 89 | *.sap 90 | 91 | # TFS 2012 Local Workspace 92 | $tf/ 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | *.DotSettings.user 101 | 102 | # JustCode is a .NET coding add-in 103 | .JustCode 104 | 105 | # TeamCity is a build add-in 106 | _TeamCity* 107 | 108 | # DotCover is a Code Coverage Tool 109 | *.dotCover 110 | 111 | # NCrunch 112 | _NCrunch_* 113 | .*crunch*.local.xml 114 | nCrunchTemp_* 115 | 116 | # MightyMoose 117 | *.mm.* 118 | AutoTest.Net/ 119 | 120 | # Web workbench (sass) 121 | .sass-cache/ 122 | 123 | # Installshield output folder 124 | [Ee]xpress/ 125 | 126 | # DocProject is a documentation generator add-in 127 | DocProject/buildhelp/ 128 | DocProject/Help/*.HxT 129 | DocProject/Help/*.HxC 130 | DocProject/Help/*.hhc 131 | DocProject/Help/*.hhk 132 | DocProject/Help/*.hhp 133 | DocProject/Help/Html2 134 | DocProject/Help/html 135 | 136 | # Click-Once directory 137 | publish/ 138 | 139 | # Publish Web Output 140 | *.[Pp]ublish.xml 141 | *.azurePubxml 142 | 143 | # TODO: Un-comment the next line if you do not want to checkin 144 | # your web deploy settings because they may include unencrypted 145 | # passwords 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # NuGet Packages 150 | *.nupkg 151 | # The packages folder can be ignored because of Package Restore 152 | **/packages/* 153 | # except build/, which is used as an MSBuild target. 154 | !**/packages/build/ 155 | # Uncomment if necessary however generally it will be regenerated when needed 156 | #!**/packages/repositories.config 157 | # NuGet v3's project.json files produces more ignoreable files 158 | *.nuget.props 159 | *.nuget.targets 160 | 161 | # Microsoft Azure Build Output 162 | csx/ 163 | *.build.csdef 164 | 165 | # Microsoft Azure Emulator 166 | ecf/ 167 | rcf/ 168 | 169 | # Windows Store app package directory 170 | AppPackages/ 171 | BundleArtifacts/ 172 | 173 | # Visual Studio cache files 174 | # files ending in .cache can be ignored 175 | *.[Cc]ache 176 | # but keep track of directories ending in .cache 177 | !*.[Cc]ache/ 178 | 179 | # Others 180 | ClientBin/ 181 | [Ss]tyle[Cc]op.* 182 | ~$* 183 | *~ 184 | *.dbmdl 185 | *.dbproj.schemaview 186 | *.pfx 187 | *.publishsettings 188 | node_modules/ 189 | orleans.codegen.cs 190 | 191 | # RIA/Silverlight projects 192 | Generated_Code/ 193 | 194 | # Backup & report files from converting an old project file 195 | # to a newer Visual Studio version. Backup files are not needed, 196 | # because we have git ;-) 197 | _UpgradeReport_Files/ 198 | Backup*/ 199 | UpgradeLog*.XML 200 | UpgradeLog*.htm 201 | 202 | # SQL Server files 203 | *.mdf 204 | *.ldf 205 | 206 | # Business Intelligence projects 207 | *.rdl.data 208 | *.bim.layout 209 | *.bim_*.settings 210 | 211 | # Microsoft Fakes 212 | FakesAssemblies/ 213 | 214 | # GhostDoc plugin setting file 215 | *.GhostDoc.xml 216 | 217 | # Node.js Tools for Visual Studio 218 | .ntvs_analysis.dat 219 | 220 | # Visual Studio 6 build log 221 | *.plg 222 | 223 | # Visual Studio 6 workspace options file 224 | *.opt 225 | 226 | # Visual Studio LightSwitch build output 227 | **/*.HTMLClient/GeneratedArtifacts 228 | **/*.DesktopClient/GeneratedArtifacts 229 | **/*.DesktopClient/ModelManifest.xml 230 | **/*.Server/GeneratedArtifacts 231 | **/*.Server/ModelManifest.xml 232 | _Pvt_Extensions 233 | 234 | # LightSwitch generated files 235 | GeneratedArtifacts/ 236 | ModelManifest.xml 237 | 238 | # Paket dependency manager 239 | .paket/paket.exe 240 | 241 | # FAKE - F# Make 242 | .fake/ 243 | -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "ql_Manager.h" 3 | using namespace std; 4 | #define DEBUG_SQL 5 | #include 6 | #include "cparse\shunting-yard.h" 7 | 8 | 9 | #ifdef DEBUG_SQL 10 | int main() { 11 | ql_Manager qm; 12 | string sql = ""; 13 | while (true) { 14 | string tmp; 15 | getline(cin, tmp); 16 | sql += " " + tmp; 17 | int ret = sql.find(';'); 18 | if (ret != string::npos) { 19 | qm.run(sql.substr(0, ret + 1)); 20 | sql = ""; 21 | } 22 | } 23 | } 24 | #endif // DEBUG_SQL 25 | /* 26 | select * from test; 27 | /* 28 | select ID, Firstname from 29 | test where date=='2016-10-10'; 30 | 31 | select ID, Firstname from 32 | test where date=='2016-10-11'; 33 | 34 | select ID, Firstname from 35 | (select ID, Firstname from 36 | test where date=='2016-10-10') where id==1; 37 | */ 38 | 39 | /* 40 | select count(id), married from test group by married; 41 | select max(age), married from test group by married; 42 | select max(age) from test; 43 | */ 44 | 45 | /* 46 | select max(age), date from test group by date order by date; 47 | select max(age), date from test group by date order by date desc; 48 | select max(age), date from test group by date having max(age)>10; 49 | select max(age), date from test group by date having max(age)>10 order by age; 50 | */ 51 | /* 52 | create table stu ( 53 | id int, 54 | name varchar(20), 55 | sex char, 56 | weight double, 57 | birtyday date 58 | ); 59 | insert into stu values (1, 'zhangsan', 'M', 90.0, '1996-10-10'); 60 | insert into stu values (2, 'lisi', 'M', 100.1, '1996-10-10'); 61 | insert into stu values (3, 'tom', 'M', 101.0, '1996-10-11'); 62 | insert into stu values (4, 'xiaohong', 'F', 80.3, '1996-10-11'); 63 | insert into stu values (5, 'xiaoming', 'M', 92.5, '1996-10-12'); 64 | insert into stu values (6, 'alice', 'F', 96.5, '1996-10-12'); 65 | select * from stu; 66 | select id, name from stu where id>=2&&id<=5; 67 | select id from (select id, name from stu where id>=2&&id<=5); 68 | select max(weight), sex from stu group by sex; 69 | select max(weight), sex from stu group by sex having max(weight)>=100; 70 | select ave(weight), birtyday from stu group by birtyday; 71 | select ave(weight), birtyday from stu group by birtyday order by weight; 72 | */ 73 | 74 | #ifdef DEBUG_DBF 75 | 76 | int main(int argc, char *argv[]) 77 | { 78 | /* 79 | TokenMap vars; 80 | calculator calu; 81 | calu.compile("(d != 'abcdef')"); 82 | vars["a"] = 2.33; 83 | vars["b"] = 2.34; 84 | vars["c"] = "1234"; 85 | vars["d"] = "4567"; 86 | std::cout << calu.eval(vars).str() << std::endl; 87 | packToken pt; 88 | */ 89 | if (false) 90 | { 91 | string sFileReadTest = "TestCreate.dbf"; 92 | //sFileReadTest = argv[1]; // do a read test on the given file 93 | 94 | DBF mydbf; 95 | std::cerr << "Read Test of " << sFileReadTest << std::endl; 96 | int nRet = mydbf.open(sFileReadTest); 97 | if (nRet) 98 | { 99 | std::cerr << "Unable to Open File " << sFileReadTest << std::endl; 100 | } 101 | else 102 | { 103 | int nRecs = mydbf.GetNumRecords(); 104 | int nFields = mydbf.GetNumFields(); 105 | std::cout << "Open() found " << nRecs << " records, and " << nFields << " fields." << std::endl; 106 | mydbf.dumpAsCSV(); 107 | std::cout << "Done Read Test " << std::endl; 108 | mydbf.close(); 109 | } 110 | } 111 | else 112 | { 113 | // no param, means to run a test to create, read and delete a record in the dbf 114 | 115 | // now create a db 116 | std::cout << "Create file TestCreate.dbf from code" << std::endl; 117 | DBF newdbf; 118 | 119 | 120 | int nRet = newdbf.create("TestCreate.dbf", 6); 121 | if (nRet == 0) 122 | { 123 | // create the 5 fields 124 | fieldDefinition fd = TypeInteger(); 125 | strncpy(fd.cFieldName, "ID", 10); 126 | newdbf.assignField(fd, 0); 127 | 128 | fd = TypeString(); 129 | strncpy(fd.cFieldName, "FirstName", 10); 130 | fd.uLength = 20; 131 | newdbf.assignField(fd, 1); 132 | 133 | fd = TypeDouble(); 134 | strncpy(fd.cFieldName, "Weight", 10); 135 | newdbf.assignField(fd, 2); 136 | 137 | fd = TypeInteger(); 138 | strncpy(fd.cFieldName, "Age", 10); 139 | newdbf.assignField(fd, 3); 140 | 141 | fd = TypeBoolean(); 142 | strncpy(fd.cFieldName, "Married", 10); 143 | newdbf.assignField(fd, 4); 144 | 145 | fd = TypeDate(); 146 | strncpy(fd.cFieldName, "Date", 10); 147 | newdbf.assignField(fd, 5); 148 | 149 | 150 | 151 | // now create some records to test it! 152 | string s1[6] = { "1" ,"Ric G","210.123456789123456","43","T", "2016-10-10" }; 153 | newdbf.appendRecord(&s1[0], 6); 154 | 155 | string s2[6] = { "1000" ,"Paul F","196.2","33","T", "2016-10-10" }; 156 | newdbf.appendRecord(s2, 6); 157 | 158 | string s3[6] = { "20000" ,"Dean K","186.1","23","F", "2016-10-11" }; 159 | newdbf.appendRecord(s3, 6); 160 | 161 | string s4[6] = { "300000" ,"Gary\" Q","175.123456789","13","F", "2016-10-11" }; 162 | newdbf.appendRecord(s4, 6); 163 | 164 | string s5[6] = { "2000000" ,"Dan'e \"D, with comma and over sized field that will be truncated","65.2","6","F", "2016-10-12" }; 165 | newdbf.appendRecord(s5, 6); 166 | 167 | // now add a huge pile of random records to see if it crashes 168 | //int nID = 2000001; 169 | //for( int i=0; i < 1000; i++) 170 | //{ 171 | // stringstream ssName; 172 | // ssName << "FirstName" << nID; 173 | 174 | // float fWeight = (float) nID / 40000.0; 175 | // int nAge = i % 120; 176 | 177 | 178 | // stringstream ssID; 179 | // ssID << nID; 180 | 181 | // stringstream ssWeight; 182 | // ssWeight << fWeight; 183 | 184 | // stringstream ssAge; 185 | // ssAge << nAge; 186 | 187 | // string sMarried = "F"; 188 | // if( nID % 2 == 0 ) 189 | // sMarried = "T"; 190 | 191 | // string sRec[5]={ssID.str(),ssName.str(),ssWeight.str(),ssAge.str(),sMarried}; 192 | // newdbf.appendRecord(sRec,5); 193 | 194 | // nID++; 195 | //} 196 | 197 | 198 | 199 | newdbf.close(); 200 | 201 | std::cout << "Done Creating the DBF" << std::endl; 202 | 203 | //std::cout << "Open the DBF for reading and writing" << std::endl; 204 | //// now read the dbf back to test that it worked! 205 | //DBF readTest; 206 | //readTest.open("TestCreate.dbf",true); 207 | //int nRecs = readTest.GetNumRecords(); 208 | //int nFields = readTest.GetNumFields(); 209 | //std::cout << "Open() found " << nRecs << " records, and " << nFields << " fields." << std::endl; 210 | //readTest.dumpAsCSV(); 211 | //std::cout << "Done Reading a freshly created DBF! " << std::endl; 212 | 213 | //std::cout << "Test Delete Record 1 in DBF! " << std::endl; 214 | //std::cout << "Test Delete Record 3 in DBF! " << std::endl; 215 | //readTest.markAsDeleted(1); 216 | //readTest.markAsDeleted(3); 217 | //readTest.dumpAsCSV(); 218 | 219 | //std::cout << "Done Test Delete Record DBF! " << std::endl; 220 | 221 | //readTest.close(); 222 | } 223 | } 224 | system("pause"); 225 | return 0; 226 | } 227 | 228 | #endif // DEBUG 229 | -------------------------------------------------------------------------------- /database.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {D20150D1-8C65-4152-A0A4-552BFE4BD4A1} 23 | Win32Proj 24 | 25 | 26 | 27 | Application 28 | true 29 | v140 30 | 31 | 32 | Application 33 | false 34 | v140 35 | 36 | 37 | Application 38 | true 39 | v140 40 | 41 | 42 | Application 43 | false 44 | v140 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | true 66 | 67 | 68 | true 69 | 70 | 71 | 72 | WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) 73 | MultiThreadedDebugDLL 74 | Level3 75 | ProgramDatabase 76 | Disabled 77 | 78 | 79 | MachineX86 80 | true 81 | Console 82 | 83 | 84 | 85 | 86 | WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) 87 | MultiThreadedDLL 88 | Level3 89 | ProgramDatabase 90 | 91 | 92 | MachineX86 93 | true 94 | Console 95 | true 96 | true 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /ClassDiagram.cd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | AAAAEAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 7 | cparse\catch.hpp 8 | 9 | 10 | 11 | 12 | 13 | AAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAACAAAAAIEAAA= 14 | cparse\catch.hpp 15 | 16 | 17 | 18 | 19 | 20 | AAQAAAAAAEIAAAAAAAAAAAIAAAAEAAAAAAAQEAAAAAA= 21 | cparse\functions.h 22 | 23 | 24 | 25 | 26 | 27 | AAQAIAAAAAAAAAAAAAAAAAAAAAAEAAUAAAAQEAAAAQA= 28 | cparse\functions.h 29 | 30 | 31 | 32 | 33 | 34 | AAAAAoAAAQAAAAABAAAAAIAAAAEAAAAAAAAIEgAAAAA= 35 | cparse\objects.h 36 | 37 | 38 | 39 | 40 | 41 | AAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAA= 42 | cparse\objects.h 43 | 44 | 45 | 46 | 47 | 48 | AACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAA= 49 | cparse\objects.h 50 | 51 | 52 | 53 | 54 | 55 | AAAAAAJAAAAACAAABAIEAgAAAAAAAAAAAIAxAAAAAAA= 56 | cparse\pack.h 57 | 58 | 59 | 60 | 61 | 62 | EIFACAAAAAAAAAABAAAIB0AAAAEAECAAAAAgQA0AhAA= 63 | cparse\packToken.h 64 | 65 | 66 | 67 | 68 | 69 | AAAAAAAAAACAAgAAAAAAAAAAAAAAAAAAAgQAAAAAAAA= 70 | cparse\shunting-yard-exceptions.h 71 | 72 | 73 | 74 | 75 | 76 | AAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAABAAA= 77 | cparse\shunting-yard.h 78 | 79 | 80 | 81 | 82 | 83 | AAAAAAAQAAAAAAAAAAAAAUAAAAAAAAAAAQAAAAACAQA= 84 | cparse\shunting-yard.h 85 | 86 | 87 | 88 | 89 | 90 | AAQAAAAAgAAAAAQAAAEAAAAAAAAAAAAAAAEQAAAAgAA= 91 | cparse\shunting-yard.h 92 | 93 | 94 | 95 | 96 | 97 | AAAgQAAAAAAEAgIAEAAAYAAIAAQDACAAAAAgACAAACA= 98 | cparse\shunting-yard.h 99 | 100 | 101 | 102 | 103 | 104 | ACFAAQBABAAkEAAAICCAAIAASQIACABgAIBgRBIEKBQ= 105 | dbf\dbf.h 106 | 107 | 108 | 109 | 110 | 111 | AAAAACIABBAJAAAABIAAgAAgIBBIBAAAAAABAEAAAAA= 112 | Praser.h 113 | 114 | 115 | 116 | 117 | 118 | ACAAggAAgAAAAEAAAAAAAAAhAIAAQAAEAEAAAAAAAAA= 119 | ql_create.h 120 | 121 | 122 | 123 | 124 | 125 | AAAAAAAAAAAAAAgAAABAAAAAAAAAAAAAAAAAAAAAAAA= 126 | ql_delete.h 127 | 128 | 129 | 130 | 131 | 132 | AgAAAgAAAAAAAAAAIAAAAAAAAIAAACAAQEAAAAAAAAA= 133 | ql_insert.h 134 | 135 | 136 | 137 | 138 | 139 | AAAAAgAAAAACBAAAAAAgAAAAAAAAAAAAAAAAAAAACAA= 140 | ql_Manager.h 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | ql_select.h 149 | 150 | 151 | 152 | 153 | ql_select.h 154 | 155 | 156 | 157 | 158 | AAQSFgIIACIQAAAEBAQAgQAAAAQAYABAAAgIAAAEAiA= 159 | ql_select.h 160 | 161 | 162 | 163 | 164 | 165 | AgAAAgAAAAAAAAAAAAAAASAAAIAAAAAAAEAAAAAAAAA= 166 | ql_update.h 167 | 168 | 169 | 170 | 171 | 172 | AGCAAIYABgAAAAATICAgSAAAMAAIDAEAAIAAAASEDCU= 173 | Table.h 174 | 175 | 176 | 177 | 178 | 179 | AAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA= 180 | cparse\catch.hpp 181 | 182 | 183 | 184 | 185 | 186 | AAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAA= 187 | cparse\catch.hpp 188 | 189 | 190 | 191 | 192 | 193 | AAAAAAAAAAAAAgAAAAAAAIAAAAAAAAAAAAAAQAAAAAA= 194 | cparse\catch.hpp 195 | 196 | 197 | 198 | 199 | 200 | AAAAAAAEAAAAAAAQAAAAQgAAQAAAAAAAAQAgAAAABAA= 201 | cparse\catch.hpp 202 | 203 | 204 | 205 | 206 | 207 | AAAAAAAAAAQAAAAACAAAAQABAAAAEAAIAQAgAAAAAAA= 208 | cparse\catch.hpp 209 | 210 | 211 | 212 | 213 | 214 | AAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAA= 215 | cparse\catch.hpp 216 | 217 | 218 | 219 | 220 | 221 | ABAAAAAAAAAAAAAACIAAAQAAAAAAAAAAAAAAAAAAAAA= 222 | cparse\catch.hpp 223 | 224 | 225 | 226 | 227 | 228 | ACAAggAAAgAAAAIAAChABAEAAAAABAAAEAIgAAAgFAA= 229 | cparse\catch.hpp 230 | 231 | 232 | 233 | 234 | 235 | AAAAAAAAAAAgAAAABAACAQAACAAAAJAAAAAoAAAAAAA= 236 | cparse\catch.hpp 237 | 238 | 239 | 240 | 241 | 242 | ABAAAAQBAAAgAoICBKCCAQAAAAgEgIEAJIACAAAAwAA= 243 | cparse\catch.hpp 244 | 245 | 246 | 247 | 248 | 249 | AAAAAAAAAAAAAAAAAAAAAAEAAAAACAAAAAAAAAAABAA= 250 | cparse\catch.hpp 251 | 252 | 253 | 254 | 255 | 256 | AAAAAAAAAAAAAAAgAAAAEAAAQAAAAAAAAIAAAgAEAAA= 257 | cparse\catch.hpp 258 | 259 | 260 | 261 | 262 | 263 | EAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAICIAABgQ= 264 | cparse\catch.hpp 265 | 266 | 267 | 268 | 269 | 270 | AAAAAAAAAAAAACAAAIAAAAAAAAAAAIAgAAAAQAAAAAA= 271 | cparse\catch.hpp 272 | 273 | 274 | 275 | 276 | 277 | AAAAAAAAAAAAACAAAIAAACAgAAAAAAAAAAAAAAACAAA= 278 | cparse\catch.hpp 279 | 280 | 281 | 282 | 283 | 284 | AABAAAAAAAAAAACAAAAAQAEAQIABAAAAAgCAAAACAAA= 285 | cparse\catch.hpp 286 | 287 | 288 | 289 | 290 | 291 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 292 | cparse\catch.hpp 293 | 294 | 295 | 296 | 297 | 298 | AQAAAAAEAAAAAAEQAAAACoAAAAAgAAAAAAAiAgAAAAA= 299 | cparse\catch.hpp 300 | 301 | 302 | 303 | 304 | 305 | AAAAAAAAAAAAAAAADAAAAACAAAgAAAAAAAAEAAAAAAA= 306 | cparse\catch.hpp 307 | 308 | 309 | 310 | 311 | 312 | AAAAEAAQAAAAAAAAQAAAAgAAAAEAAAAAAgBAAAAAAAA= 313 | cparse\catch.hpp 314 | 315 | 316 | 317 | 318 | 319 | AIABAgCAAEAAAgAQAAAAAAAQIAQAAAAgEAgQAAAAIAA= 320 | cparse\catch.hpp 321 | 322 | 323 | 324 | 325 | 326 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 327 | cparse\catch.hpp 328 | 329 | 330 | 331 | 332 | 333 | AAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAIAAAAAAAAAA= 334 | cparse\catch.hpp 335 | 336 | 337 | 338 | 339 | 340 | AAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAIAAAAA= 341 | cparse\catch.hpp 342 | 343 | 344 | 345 | 346 | 347 | AAAAAAAAAAAAAAAAAAAAAAAAAQAIAAAAAAAAAAAAAAA= 348 | cparse\catch.hpp 349 | 350 | 351 | 352 | 353 | 354 | AABBAIAEggMAAAEAAIAAACAQCgQMQgAASEBiACAEgAA= 355 | cparse\catch.hpp 356 | 357 | 358 | 359 | 360 | 361 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAACAAA= 362 | cparse\catch.hpp 363 | 364 | 365 | 366 | 367 | 368 | AABAAAAEAAAAAAAAAAAAAQAAAAAQAAAAAAAAIAAAQAA= 369 | cparse\catch.hpp 370 | 371 | 372 | 373 | 374 | 375 | BgBmACEAQAAUAAAkIaAQACAgwAoQAEEEMAAgAABAAAA= 376 | cparse\catch.hpp 377 | 378 | 379 | 380 | 381 | 382 | AAAKAgAGAAAAAQAICAAAgARgAAAAAAAAAAACAAAgAAA= 383 | cparse\catch.hpp 384 | 385 | 386 | 387 | 388 | 389 | AABACAAAAAAAIQAAIAAAACAIAAAAAAAgAAEAAQAAAAA= 390 | cparse\catch.hpp 391 | 392 | 393 | 394 | 395 | 396 | AAAAgAAAAAAAAAAACAEAAAAAACAAAAAAAAAAAAAAAAA= 397 | cparse\catch.hpp 398 | 399 | 400 | 401 | 402 | 403 | AAAAAACAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAA= 404 | cparse\catch.hpp 405 | 406 | 407 | 408 | 409 | 410 | AAAAIAAAAABAAAAAAAAAAAAgAAAAAAAgAAAAAAAAgAA= 411 | cparse\catch.hpp 412 | 413 | 414 | 415 | 416 | 417 | AAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAEAAQAAAAAAA= 418 | cparse\catch.hpp 419 | 420 | 421 | 422 | 423 | 424 | AAEAAACAAgmAhBAAAAABAAAgAAAEAAAAABAkAEAAAAA= 425 | cparse\catch.hpp 426 | 427 | 428 | 429 | 430 | 431 | AIAAAABAAAAAAAAAAQAAAEAAAAAgAAAAAAAAAAAAAAA= 432 | cparse\catch.hpp 433 | 434 | 435 | 436 | 437 | 438 | BAAgAAAAAEgECAABAABAAEAgAAAAAgAAAAAAAAhSAAA= 439 | cparse\catch.hpp 440 | 441 | 442 | 443 | 444 | 445 | AAAAAAAAAAAAAAQAABAAQAAAAAAAAAAACAAEAAACAAA= 446 | cparse\catch.hpp 447 | 448 | 449 | 450 | 451 | 452 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAA= 453 | cparse\catch.hpp 454 | 455 | 456 | 457 | 458 | 459 | AAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 460 | cparse\catch.hpp 461 | 462 | 463 | 464 | 465 | 466 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAA= 467 | cparse\catch.hpp 468 | 469 | 470 | 471 | 472 | 473 | AAAACBAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAA= 474 | cparse\catch.hpp 475 | 476 | 477 | 478 | 479 | 480 | AAAAAEQIAAAAEAAAAiAAABACEIBIAAIEiAAgAAAIAAQ= 481 | cparse\catch.hpp 482 | 483 | 484 | 485 | 486 | 487 | AAAAAAAAAAAgAAAAAAAAAAAAAABAAAAAAAAAAAAAAAA= 488 | cparse\catch.hpp 489 | 490 | 491 | 492 | 493 | 494 | AAAAAAAAAAAgAAAACAAAAAAAAAAAACAAAAAAAAAAAAA= 495 | cparse\catch.hpp 496 | 497 | 498 | 499 | 500 | 501 | AAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAA= 502 | cparse\catch.hpp 503 | 504 | 505 | 506 | 507 | 508 | AACAAAAAAAAAAAAAAAQCBAAAAAAAAAAAAAAAAAACAAI= 509 | cparse\catch.hpp 510 | 511 | 512 | 513 | 514 | 515 | AACAAAAAAAAAAAAAAAAQBAAAAAAAAIAAAAAAAAACAAI= 516 | cparse\catch.hpp 517 | 518 | 519 | 520 | 521 | 522 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 523 | cparse\catch.hpp 524 | 525 | 526 | 527 | 528 | 529 | AAAAAAAABAAAICAAEAAABBACAAQAAQAAAAAAAAAAAAA= 530 | cparse\catch.hpp 531 | 532 | 533 | 534 | 535 | 536 | AAAAAAACAAAAACAAAIAABAAQAAMAACAAAAAACAAAAgA= 537 | cparse\catch.hpp 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | cparse\catch.hpp 546 | 547 | 548 | 549 | 550 | cparse\catch.hpp 551 | 552 | 553 | 554 | 555 | AAAgAAIAAAAQAACAAAAAEAgAQgAAAAAAAAAACAQAAAA= 556 | cparse\catch.hpp 557 | 558 | 559 | 560 | 561 | 562 | AAgAAIAAAAAAQAAgCIQAAAAAIAGAAIAAAAAMwAgAIIE= 563 | cparse\catch.hpp 564 | 565 | 566 | 567 | 568 | 569 | QAAAAAAACAAAAAAAAAQAAAACQAAAIAAAAAAgAAAAAAA= 570 | cparse\catch.hpp 571 | 572 | 573 | 574 | 575 | 576 | AAAAAAACAAAAACAAAIAABAAQAAMAACAAAAAACAAAAgA= 577 | cparse\catch.hpp 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | cparse\catch.hpp 586 | 587 | 588 | 589 | 590 | AQAAAACBAAAAAAAAABhAAAQAAABAAQAAAAEAQAAAAAA= 591 | cparse\catch.hpp 592 | 593 | 594 | 595 | 596 | 597 | EAAAAAAAAAQAAAAAAAgAAEAAAAAIIAIAAAAAAAAAAAA= 598 | cparse\catch.hpp 599 | 600 | 601 | 602 | 603 | 604 | AAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA= 605 | cparse\catch.hpp 606 | 607 | 608 | 609 | 610 | 611 | AAAAAAAAAAAAAAAAAAAAAEQQAAAAAAAABAAAAAAACAA= 612 | cparse\catch.hpp 613 | 614 | 615 | 616 | 617 | 618 | AAAAAAAAAAAAAAAAAAAAAAAAAABAAAAQBAAAAAAAAAA= 619 | cparse\catch.hpp 620 | 621 | 622 | 623 | 624 | 625 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAA= 626 | cparse\builtin-features.cpp 627 | 628 | 629 | 630 | 631 | 632 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAA= 633 | cparse\builtin-features.cpp 634 | 635 | 636 | 637 | 638 | 639 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 640 | cparse\builtin-features.cpp 641 | 642 | 643 | 644 | 645 | 646 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAA= 647 | cparse\builtin-features.cpp 648 | 649 | 650 | 651 | 652 | 653 | AAAAAAAAAAAAQAAAEAAAAAAAAAQAAAAAAAAAAAAAIAA= 654 | cparse\test-shunting-yard.cpp 655 | 656 | 657 | 658 | 659 | 660 | AAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 661 | cparse\test-shunting-yard.cpp 662 | 663 | 664 | 665 | 666 | 667 | AAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAA= 668 | cparse\catch.hpp 669 | 670 | 671 | 672 | 673 | 674 | AAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAA= 675 | cparse\catch.hpp 676 | 677 | 678 | 679 | 680 | 681 | AAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 682 | cparse\catch.hpp 683 | 684 | 685 | 686 | 687 | 688 | EAAAAAAAAAAAABAgAABAAAAAAAAAAAAAAAAAABAAAAA= 689 | cparse\catch.hpp 690 | 691 | 692 | 693 | 694 | 695 | AAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAA= 696 | cparse\objects.h 697 | 698 | 699 | 700 | 701 | 702 | AAAAACAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAgIAAAA= 703 | cparse\objects.h 704 | 705 | 706 | 707 | 708 | 709 | AIAAEAAAAAAAAABAAAAAAAAAAAAAAAAAAAAwAAAAAAA= 710 | cparse\objects.h 711 | 712 | 713 | 714 | 715 | 716 | AAAAEEAAAABEAABBAAAIAAACAAEAAAAQCAAAEkAAAAI= 717 | cparse\objects.h 718 | 719 | 720 | 721 | 722 | 723 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAA= 724 | cparse\objects.h 725 | 726 | 727 | 728 | 729 | 730 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAA= 731 | cparse\shunting-yard-exceptions.h 732 | 733 | 734 | 735 | 736 | 737 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAA= 738 | cparse\shunting-yard-exceptions.h 739 | 740 | 741 | 742 | 743 | 744 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAA= 745 | cparse\shunting-yard-exceptions.h 746 | 747 | 748 | 749 | 750 | 751 | AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAA= 752 | cparse\shunting-yard-exceptions.h 753 | 754 | 755 | 756 | 757 | 758 | AQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAEAAAAAA= 759 | cparse\shunting-yard.h 760 | 761 | 762 | 763 | 764 | 765 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAACAA= 766 | cparse\shunting-yard.h 767 | 768 | 769 | 770 | 771 | 772 | AAAAAAIAAFAEAAAAAAAgAgAAAgBAAAAAiAIIAAEIAAA= 773 | cparse\shunting-yard.h 774 | 775 | 776 | 777 | 778 | 779 | AAAAAAAAAAAAAIAAEAAgAAAQAAAAAAAAAAAIAAEAAAA= 780 | cparse\shunting-yard.h 781 | 782 | 783 | 784 | 785 | 786 | AAAAAAAAAAAACAIAAAAEAAAAAAAAACAAAAAAEAAAAAA= 787 | cparse\shunting-yard.h 788 | 789 | 790 | 791 | 792 | 793 | AAAAAAAAAAAAAAAAAAAAAAAACAAIAAAAAAAIAAAAgAA= 794 | cparse\shunting-yard.h 795 | 796 | 797 | 798 | 799 | 800 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAA= 801 | cparse\shunting-yard.h 802 | 803 | 804 | 805 | 806 | 807 | gAEAAAAAACgIAAAAAIAAIAAAAYAAAAEAAACAAAAAAAA= 808 | dbf\DBFBase.h 809 | 810 | 811 | 812 | 813 | 814 | ACAAAAFAAAggAAAAAAAAMAAAAAAAQAAAAAAAAAAAAAI= 815 | dbf\DBFBase.h 816 | 817 | 818 | 819 | 820 | 821 | AAABAIAAgAEAAEAAAAAAAAAQCAAEAgAASAACACAAgAA= 822 | cparse\catch.hpp 823 | 824 | 825 | 826 | 827 | 828 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 829 | cparse\catch.hpp 830 | 831 | 832 | 833 | 834 | 835 | AAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAQAAAA= 836 | cparse\catch.hpp 837 | 838 | 839 | 840 | 841 | 842 | AAEAAAAAAAAAAAAAAAAAAQACAAAAAAAABAAgAAACAAA= 843 | cparse\catch.hpp 844 | 845 | 846 | 847 | 848 | 849 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA= 850 | cparse\catch.hpp 851 | 852 | 853 | 854 | 855 | 856 | AAACAAAAAAAAAAAAAAAAAAEAAAAgAAAAAAAAAAAAAAA= 857 | cparse\catch.hpp 858 | 859 | 860 | 861 | 862 | 863 | AAAAAAAAAAAAAAAAAQAAAAAAAAAgAAAAAAAQAAAAAAA= 864 | cparse\catch.hpp 865 | 866 | 867 | 868 | 869 | 870 | EAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAA= 871 | cparse\catch.hpp 872 | 873 | 874 | 875 | 876 | 877 | EAAAAAAEAAAAAAAAQAAAAAAAAAAAAAgAAAAAAAAAAAA= 878 | cparse\catch.hpp 879 | 880 | 881 | 882 | 883 | 884 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 885 | cparse\catch.hpp 886 | 887 | 888 | 889 | 890 | 891 | AAAAAAAAAAAQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAA= 892 | cparse\catch.hpp 893 | 894 | 895 | 896 | 897 | 898 | AAAAAAAAAAmAAAAAAAAAAAAACAAEAAAAAAAEAAAAAAA= 899 | cparse\catch.hpp 900 | 901 | 902 | 903 | 904 | 905 | AAAAAACAAAAAAAAAAAAACAAAAAAAAAAAABAAAEAAAAA= 906 | cparse\catch.hpp 907 | 908 | 909 | 910 | 911 | 912 | AAAEAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA= 913 | cparse\catch.hpp 914 | 915 | 916 | 917 | 918 | 919 | AAAASAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAA= 920 | cparse\catch.hpp 921 | 922 | 923 | 924 | 925 | 926 | AAAAAAAAAAAAAAAAKAAAAAAAAAAEAAAAAAAAAAAAAAA= 927 | cparse\catch.hpp 928 | 929 | 930 | 931 | 932 | 933 | QAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAgAAAAAAA= 934 | cparse\catch.hpp 935 | 936 | 937 | 938 | 939 | 940 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 941 | cparse\catch.hpp 942 | 943 | 944 | 945 | 946 | 947 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 948 | cparse\catch.hpp 949 | 950 | 951 | 952 | 953 | 954 | AAAAAAAAAAABAAACAAAAAAAAAAABAAACAAAAABAAAAA= 955 | cparse\catch.hpp 956 | 957 | 958 | 959 | 960 | 961 | AAAAAAAAAAAAAAAAAAACAIAAAAAAAAAAAAAAAAAAADA= 962 | cparse\catch.hpp 963 | 964 | 965 | 966 | 967 | 968 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 969 | cparse\catch.hpp 970 | 971 | 972 | 973 | 974 | 975 | AAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAEgAAAAAAA= 976 | cparse\catch.hpp 977 | 978 | 979 | 980 | 981 | 982 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 983 | cparse\catch.hpp 984 | 985 | 986 | 987 | 988 | 989 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 990 | cparse\catch.hpp 991 | 992 | 993 | 994 | 995 | 996 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 997 | cparse\catch.hpp 998 | 999 | 1000 | 1001 | 1002 | 1003 | AAAAAAAAAAAAAAAKAAAQAQAAAAABAAAAAQAgABAAACA= 1004 | cparse\catch.hpp 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | AAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAgARAA= 1011 | cparse\catch.hpp 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | AAAAAAAAAAAAAAAAIAAAAAAAAAAEAAAAAAAgABAAAAA= 1018 | cparse\catch.hpp 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | AAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAIAIAA= 1025 | cparse\catch.hpp 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | AAAAAAAAAAAAAAAAAAEAAQQAAAAAGAAACEAgAAAAIAA= 1032 | cparse\catch.hpp 1033 | 1034 | 1035 | 1036 | 1037 | 1038 | AAAAAAAAAAAAAAAAAAAAAQAAAAAAAAQAABAgAEAAAAA= 1039 | cparse\catch.hpp 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | AAAAAAAAAAAAACAAAIAAAAAAAAEAAAAAAAAAAAAAAAA= 1046 | cparse\catch.hpp 1047 | 1048 | 1049 | 1050 | 1051 | 1052 | AAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAgAA= 1053 | cparse\catch.hpp 1054 | 1055 | 1056 | 1057 | 1058 | 1059 | AAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAABAA= 1060 | cparse\catch.hpp 1061 | 1062 | 1063 | 1064 | 1065 | 1066 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAABAIAA= 1067 | cparse\catch.hpp 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | AAAAAAAAAAAgAAAAAAAAAAQAAAAAAAAAAABAAAAAAAA= 1074 | cparse\catch.hpp 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | AEAAAAAAgAAAAAAAAAAAAAAAAAEIAAAAAAAAAAAAAAA= 1081 | cparse\catch.hpp 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | AAAAIACAAAAAAQAAAAAAAAAAAAAAAggAAAAAAAAAAAA= 1088 | cparse\catch.hpp 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | AAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABABAAA= 1095 | cparse\catch.hpp 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAA= 1102 | cparse\catch.hpp 1103 | 1104 | 1105 | 1106 | 1107 | 1108 | AAAIAAAAAAAAAAQAAAAAQAAAAAAAAAAACAAAAAAAAAA= 1109 | cparse\catch.hpp 1110 | 1111 | 1112 | 1113 | 1114 | 1115 | AAISAIAEAAAAAAAAICAAAAAAAAAEAAAAAABAABEAAAE= 1116 | cparse\catch.hpp 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1123 | cparse\catch.hpp 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1130 | cparse\catch.hpp 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1137 | cparse\catch.hpp 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1144 | cparse\catch.hpp 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1151 | cparse\catch.hpp 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAA= 1158 | cparse\catch.hpp 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | AAJAAKAEAAEAAAEAgIAQAAAQCgAMAAIAQEAQACIAwAA= 1165 | cparse\catch.hpp 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | AAAAAAIAAAAAAAAAAAAAAAAABAAAAAAABAAAABAAAAA= 1172 | cparse\catch.hpp 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | AAAAAAAAAAAAAAAAAAEAAQAAAAAAAAAACIAAAAAAQAA= 1179 | cparse\catch.hpp 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | AAAAAAAAAAAAABAAAAAAAAAAAAAgAAAAAAAAAAAAAAA= 1186 | cparse\catch.hpp 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | AAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAQAgQAAAAAA= 1193 | cparse\catch.hpp 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAACAAAA= 1200 | cparse\catch.hpp 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | AAAAAEAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAQA= 1207 | cparse\catch.hpp 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | AAAAAAAAAAAAAAAAAAAAAAAAAAIEACACAEAgAAAAAAA= 1214 | cparse\catch.hpp 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | AAAAAAAAAAAAAAIAAAAAAAAAAAAAAAQAECAgAAIAIAA= 1221 | cparse\catch.hpp 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | AAAIAAAAAAAQABAAAgAAQAAAAAAAAAAgAEAgAAAAAAA= 1228 | cparse\catch.hpp 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | AAAAAAAQAAAQAAAAAAAAAAAAAAAEAAAAAEQgAAAAAAA= 1235 | cparse\catch.hpp 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | AAAAAAAAEAAQIAAAAAAAAAAAAAAAAAAAgEAgAAAAAAA= 1242 | cparse\catch.hpp 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | BAAgAAAAAAgEAAABAAAAAEAgAAAAAgAAAAAQAAhSIAA= 1249 | cparse\catch.hpp 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | AAAAAAAAgAAAAAAABAAAAAAAQAAAAAAAAAAAAACCAAA= 1256 | cparse\catch.hpp 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | AAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1263 | cparse\catch.hpp 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | AAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAgA= 1270 | cparse\catch.hpp 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | IAAAAABAIAAAAAAEAAAAQAAAAAgAAAAAAAAgAAAAAAA= 1277 | cparse\catch.hpp 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | AAAQEAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAA= 1284 | cparse\catch.hpp 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | AAACAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAIQAAA= 1291 | cparse\catch.hpp 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | AAAAAAAAUAAAARAAAAgAgCUAQAAAAAAAAAAADEAAAgA= 1298 | cparse\catch.hpp 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | AAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAA= 1305 | cparse\catch.hpp 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | AAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAACAAAAAA= 1312 | cparse\catch.hpp 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | IAAAAAAAEAggAAABAAAAAEAgAAAAAAAAAAAAAAhCAAA= 1319 | cparse\catch.hpp 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | AAAAAAAAAAAAAAAAAAACBAAAAACAAIAAAAAgEAAAAAI= 1326 | cparse\catch.hpp 1327 | 1328 | 1329 | 1330 | 1331 | 1332 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAA= 1333 | cparse\catch.hpp 1334 | 1335 | 1336 | 1337 | 1338 | 1339 | AAAAEBAAAAAAAAAAQAAAAAAAAAAAIAAAAAAAAAAAAEA= 1340 | cparse\catch.hpp 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | AAAAAAAAAAAAAAAAgIAABAAAAEAAAAAAAAAAAAAAAAI= 1347 | cparse\catch.hpp 1348 | 1349 | 1350 | 1351 | 1352 | 1353 | AAAAAAAAAAAAAAAAAIAABAABAAAAAAAAAAAAAAAQAAI= 1354 | cparse\catch.hpp 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | AACAABAAAAAAAAAAAIAABAAAAAAAAAAAAAAAAAAAAAI= 1361 | cparse\catch.hpp 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | AAAAAAAAAAAAAAAAAIAABAAAAAIAAAAAAAAAAAAIAAI= 1368 | cparse\catch.hpp 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1375 | cparse\catch.hpp 1376 | 1377 | 1378 | 1379 | 1380 | 1381 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1382 | cparse\catch.hpp 1383 | 1384 | 1385 | 1386 | 1387 | 1388 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1389 | cparse\catch.hpp 1390 | 1391 | 1392 | 1393 | 1394 | 1395 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1396 | cparse\catch.hpp 1397 | 1398 | 1399 | 1400 | 1401 | 1402 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1403 | cparse\catch.hpp 1404 | 1405 | 1406 | 1407 | 1408 | 1409 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1410 | cparse\catch.hpp 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAA= 1417 | cparse\catch.hpp 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1424 | cparse\catch.hpp 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1431 | cparse\catch.hpp 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1438 | cparse\catch.hpp 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1445 | cparse\catch.hpp 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1452 | cparse\catch.hpp 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | AAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAA= 1459 | cparse\catch.hpp 1460 | 1461 | 1462 | 1463 | 1464 | 1465 | AAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1466 | cparse\catch.hpp 1467 | 1468 | 1469 | 1470 | 1471 | 1472 | AAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAA= 1473 | cparse\catch.hpp 1474 | 1475 | 1476 | 1477 | 1478 | 1479 | AAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAA= 1480 | cparse\catch.hpp 1481 | 1482 | 1483 | 1484 | 1485 | 1486 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAAA= 1487 | cparse\catch.hpp 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1494 | cparse\catch.hpp 1495 | 1496 | 1497 | 1498 | 1499 | 1500 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1501 | cparse\catch.hpp 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1508 | cparse\catch.hpp 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | AAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1515 | cparse\catch.hpp 1516 | 1517 | 1518 | 1519 | 1520 | 1521 | AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1522 | cparse\catch.hpp 1523 | 1524 | 1525 | 1526 | 1527 | 1528 | AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1529 | cparse\catch.hpp 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | AAAAABAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1536 | cparse\catch.hpp 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | AAAAAAAAAAAAAAAAgAAABAAAAAAAAAAAAAAAAAAAAAI= 1543 | cparse\catch.hpp 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | AAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAQAAI= 1550 | cparse\catch.hpp 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | AACAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAI= 1557 | cparse\catch.hpp 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | AAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAI= 1564 | cparse\catch.hpp 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | AAAABFBAAAAAAACARAAAAAAEAAAAAAAAAQAAAAAAAAA= 1571 | cparse\catch.hpp 1572 | 1573 | 1574 | 1575 | 1576 | 1577 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1578 | cparse\catch.hpp 1579 | 1580 | 1581 | 1582 | 1583 | 1584 | AAAAAIAEAAAAAAAAIAAAACAAQAAAAAAAAAAIAEAAAAA= 1585 | cparse\catch.hpp 1586 | 1587 | 1588 | 1589 | 1590 | 1591 | AAAAAAAEAAAAAAABAAAAAAAIAAAAAAAAAAAAAAAAAAQ= 1592 | cparse\catch.hpp 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | AAAAAAAAAAAAAAAABAAAIAAAAAAAQAAAAAAAAAAAAAA= 1599 | cparse\catch.hpp 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1606 | cparse\catch.hpp 1607 | 1608 | 1609 | 1610 | 1611 | 1612 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1613 | cparse\catch.hpp 1614 | 1615 | 1616 | 1617 | 1618 | 1619 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1620 | cparse\catch.hpp 1621 | 1622 | 1623 | 1624 | 1625 | 1626 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1627 | cparse\catch.hpp 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAA= 1634 | cparse\catch.hpp 1635 | 1636 | 1637 | 1638 | 1639 | 1640 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAA= 1641 | cparse\catch.hpp 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | BAAAAAAAAAAAAAAAAAQAAAAARAAAAAAAAAAAEAAAAAA= 1648 | cparse\catch.hpp 1649 | 1650 | 1651 | 1652 | 1653 | 1654 | AAAAAAAAAAAAAAAAAAQAAAAAQAAAAAAAAAAAEAAAAAA= 1655 | cparse\catch.hpp 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | AAAAAAAAAAAAAgAAAAQAAAAAQAAAAAAACAAAEAAAAAA= 1662 | cparse\catch.hpp 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | AAAAAAEAAAAAAAAAAAQAAAAAQAAAAAAACAAAEAAAAAA= 1669 | cparse\catch.hpp 1670 | 1671 | 1672 | 1673 | 1674 | 1675 | AAAAAAAAAAAAAAAEAAQAAAAAQAAAAAAACAAAEAAAAAA= 1676 | cparse\catch.hpp 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | AEAAAAAAAAAAAAAAAgQAAAAAQAAAAAAAAAAAEAAAAAA= 1683 | cparse\catch.hpp 1684 | 1685 | 1686 | 1687 | 1688 | 1689 | AAAAAAAAAAAAIAAAAgQAAAAAQAAAAAAAAAAAEAAAAAA= 1690 | cparse\catch.hpp 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | AAAABFBAAAAAAACARAAAAAAEAAAAAAAAAQAAAAAAAAA= 1697 | cparse\catch.hpp 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | AAAAAAAAAAAAgARAAJAAAAAAAAAMAAIAAIAQCCEEACA= 1704 | cparse\catch.hpp 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | AAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAA= 1711 | cparse\catch.hpp 1712 | 1713 | 1714 | 1715 | 1716 | 1717 | AAAAAAAAAAAAAAAAAAAAAAAAAABAAAAABAAAAAAAAAA= 1718 | cparse\catch.hpp 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | AAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAA= 1725 | cparse\catch.hpp 1726 | 1727 | 1728 | 1729 | 1730 | 1731 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1732 | cparse\catch.hpp 1733 | 1734 | 1735 | 1736 | 1737 | 1738 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1739 | c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\stdint.h 1740 | 1741 | 1742 | 1743 | 1744 | 1745 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1746 | cparse\catch.hpp 1747 | 1748 | 1749 | 1750 | 1751 | 1752 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1753 | cparse\catch.hpp 1754 | 1755 | 1756 | 1757 | 1758 | 1759 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1760 | cparse\functions.h 1761 | 1762 | 1763 | 1764 | 1765 | 1766 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1767 | cparse\objects.h 1768 | 1769 | 1770 | 1771 | 1772 | 1773 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1774 | cparse\objects.h 1775 | 1776 | 1777 | 1778 | 1779 | 1780 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1781 | cparse\shunting-yard.h 1782 | 1783 | 1784 | 1785 | 1786 | 1787 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1788 | cparse\shunting-yard.h 1789 | 1790 | 1791 | 1792 | 1793 | 1794 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1795 | cparse\shunting-yard.h 1796 | 1797 | 1798 | 1799 | 1800 | 1801 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1802 | cparse\shunting-yard.h 1803 | 1804 | 1805 | 1806 | 1807 | 1808 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1809 | cparse\shunting-yard.h 1810 | 1811 | 1812 | 1813 | 1814 | 1815 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1816 | cparse\shunting-yard.h 1817 | 1818 | 1819 | 1820 | 1821 | 1822 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1823 | cparse\shunting-yard.h 1824 | 1825 | 1826 | 1827 | 1828 | 1829 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1830 | dbf\DBFBase.h 1831 | 1832 | 1833 | 1834 | 1835 | 1836 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1837 | dbf\DBFBase.h 1838 | 1839 | 1840 | 1841 | 1842 | 1843 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 1844 | dbf\DBFBase.h 1845 | 1846 | 1847 | 1848 | 1849 | 1850 | AAAAAhAAAAAAAIAAAQAAAIAAiAgIAAEAQAAIAAAAIIg= 1851 | cparse\shunting-yard.h 1852 | 1853 | 1854 | 1855 | 1856 | 1857 | ABAAAAAAAAAAAAAAAAAAAAAAAAQAAAgAAACIABAAAAA= 1858 | cparse\catch.hpp 1859 | 1860 | 1861 | 1862 | --------------------------------------------------------------------------------