diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c74f488
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*/x64/*
diff --git a/WsNovelParser/WsNovelParser.vcxproj b/WsNovelParser/WsNovelParser.vcxproj
index b6fe165..36b818c 100644
--- a/WsNovelParser/WsNovelParser.vcxproj
+++ b/WsNovelParser/WsNovelParser.vcxproj
@@ -19,7 +19,7 @@
{1EF577E8-D92D-4926-9207-1567137BB672}
QtVS_v304
- 10.0.22621.0
+ 10.0
10.0.22621.0
$(MSBuildProjectDirectory)\QtMsBuild
@@ -38,7 +38,7 @@
5.12.11_msvc2017_64
- core
+ core;xml;gui;widgets
debug
diff --git a/WsNovelParser/WsNovelParser.vcxproj.user b/WsNovelParser/WsNovelParser.vcxproj.user
index 5764d48..e658db6 100644
--- a/WsNovelParser/WsNovelParser.vcxproj.user
+++ b/WsNovelParser/WsNovelParser.vcxproj.user
@@ -5,9 +5,9 @@
WindowsLocalDebugger
- 2024-03-17T07:54:27.0360611Z
+ 2024-03-28T12:35:16.3782516Z
- 2024-03-17T07:54:27.8046200Z
+ 2024-03-28T12:35:17.0264292Z
\ No newline at end of file
diff --git a/WsNovelParser/htmlprint.cpp b/WsNovelParser/htmlprint.cpp
index 02944b5..8ee8e47 100644
--- a/WsNovelParser/htmlprint.cpp
+++ b/WsNovelParser/htmlprint.cpp
@@ -1,60 +1,78 @@
#include "htmlprint.h"
using namespace example_novel;
+using namespace printer;
-void HtmlPrint::fragment_summary(std::shared_ptr root, const QDir& frag_outs)
-{
- std::function>(std::shared_ptr)> peak_story =
- [&](std::shared_ptr pnode) -> QList> {
- QList> listret;
+Access::Access(std::shared_ptr handle) :access_handle(handle) {}
- if (pnode->element()->typeMark() == (int)example_novel::NovelNode::StoryDefine)
- listret << pnode;
+std::shared_ptr Access::accessPeers() const { return access_handle; }
- for (auto& vit : pnode->children())
- listret.append(peak_story(vit));
+void Access::setHtmlRefer(const QString& href) { this->refers_store = href; }
- return listret;
- };
+QString Access::htmlRefer() const { return this->refers_store; }
- auto stories = peak_story(root);
- std::sort(std::begin(stories), std::end(stories),
- [](std::shared_ptr itema, std::shared_ptr itemb) -> bool {
- auto storya = std::dynamic_pointer_cast(itema->element());
- auto storyb = std::dynamic_pointer_cast(itemb->element());
- return storya->sort() < storyb->sort();
- });
+Element::Element(std::shared_ptr handle) :Access(handle) {}
- for (auto& sit : stories) {
- auto story_sort = std::make_shared(sit);
- const_cast(this)->stories_list << story_sort;
-
- auto children = sit->children();
- std::shared_ptr temp_ptr = nullptr;
- for (auto& nf : children) {
- switch ((example_novel::NovelNode)nf->element()->typeMark()) {
- case example_novel::NovelNode::FragmentDefine:
- case example_novel::NovelNode::FragmentRefer: {
- auto frag_sort = std::make_shared(nf, story_sort->sortValue());
- if (!temp_ptr) {
- story_sort->attachFragmentSort(frag_sort);
- }
- else {
- temp_ptr->attachNext(frag_sort);
- }
- temp_ptr = frag_sort;
- } break;
- default:
- break;
- }
- }
- }
-
- const_cast(this)->elements_link_build(this->stories_list);
+std::shared_ptr Element::siblingNext() const {
+ return this->sibling_store;
}
-void HtmlPrint::htmlOutput(std::shared_ptr root, const QDir& out_directory) const
-{
-
-
+void Element::setNext(std::shared_ptr inst) {
+ this->sibling_store = inst;
+}
+
+Group::Group(std::shared_ptr handle) : Access(handle) {}
+
+void Group::setChild(std::shared_ptr elm) {
+ this->element_store = elm;
+}
+
+std::shared_ptr Group::element() const {
+ return this->element_store;
+}
+
+StoryLine::StoryLine(std::shared_ptr handle) :Group(handle) {}
+
+QString printer::StoryLine::toHTML() const
+{
+ return QString();
+}
+
+StoryVolume::StoryVolume(std::shared_ptr handle) : Group(handle) {}
+
+QString printer::StoryVolume::toHTML() const
+{
+ return QString();
+}
+
+FragmentRef::FragmentRef(std::shared_ptr handle) : Element(handle) {}
+
+QString printer::FragmentRef::toOutsideHTML() const
+{
+ return QString();
+}
+
+QString printer::FragmentRef::toDefinitionHTML() const
+{
+ return QString();
+}
+
+Fragment::Fragment(std::shared_ptr handle) : Element(handle) {}
+
+void printer::Fragment::appendRefers(std::shared_ptr inst) {
+ this->additionals_store.append(inst);
+}
+
+QList> printer::Fragment::additionals() const {
+ return this->additionals_store;
+}
+
+QString printer::Fragment::toOutsideHTML() const
+{
+ return QString();
+}
+
+QString printer::Fragment::toDefinitionHTML() const
+{
+ return QString();
}
diff --git a/WsNovelParser/htmlprint.h b/WsNovelParser/htmlprint.h
index 1ed0347..5898a2c 100644
--- a/WsNovelParser/htmlprint.h
+++ b/WsNovelParser/htmlprint.h
@@ -5,56 +5,106 @@
#include
#include
-class HtmlElement {
-public:
- explicit HtmlElement(const QString &href):href_store(href){}
- virtual ~HtmlElement() = default;
+namespace printer {
+ /*
+ * @brief 所有可访问元素的基类:卷宗、故事线、情节等
+ */
+ class Access : public std::enable_shared_from_this {
+ public:
+ Access(std::shared_ptr handle);
+ virtual ~Access() = default;
- virtual QString href() const{return href_store;}
+ std::shared_ptr accessPeers() const;
-private:
- QString href_store;
-};
+ void setHtmlRefer(const QString& href);
+ QString htmlRefer() const;
-class FragmentPage : public HtmlElement {
-public:
- explicit FragmentPage(const QString &name, const QString &href);
+ private:
+ std::shared_ptr access_handle;
+ QString refers_store;
+ };
- QString wholeText() const;
+ /*
+ * @brief 可访问片段元素:故事片段本篇,故事片段引用
+ */
+ class Element : public Access {
+ public:
+ Element(std::shared_ptr handle);
+ virtual ~Element() = default;
-};
+ virtual QString toOutsideHTML() const = 0;
+ virtual QString toDefinitionHTML() const = 0;
-class StoryLinePage {
+ std::shared_ptr siblingNext() const;
+ void setNext(std::shared_ptr inst);
-};
+ private:
+ std::shared_ptr sibling_store;
+ };
-class HtmlPrint : public example_novel::FragmentOrdersCheck {
-private:
- QHash node_address;
+ /*
+ * @brief 可访问集合的基类:故事线、故事卷宗
+ */
+ class Group : public Access {
+ public:
+ Group(std::shared_ptr handle);
+ virtual ~Group() = default;
- void volume_output();
- void storyline_output();
- /**
- * 输出情节片段汇总.
- *
- * \param root 内存模型根节点
- * \param frags_o 目标目录
- */
- void fragment_summary(std::shared_ptr root, const QDir& frags_o);
+ virtual QString toHTML() const = 0;
-public:
- /**
- * 输出小说内存结构。
- * index.html
- * |——volumns
- * | \——vol_xxx.html
- * |——storyline
- * | \——story_xxx.html
- * \——fragments
- * \——frag_xxxx.html
- * \param out_directory 输出目标目录
- */
- void htmlOutput(std::shared_ptr novel, const QDir &out_directory) const;
+ void setChild(std::shared_ptr elm);
+ std::shared_ptr element() const;
-};
+ private:
+ std::shared_ptr element_store;
+ };
+ class StoryLine : public Group {
+ public:
+ StoryLine(std::shared_ptr handle);
+
+
+ // 通过 Group 继承
+ QString toHTML() const override;
+
+ };
+
+ class StoryVolume : public Group {
+ public:
+ StoryVolume(std::shared_ptr handle);
+
+
+ // 通过 Group 继承
+ QString toHTML() const override;
+
+ };
+
+ class FragmentRef : public Element {
+ public:
+ FragmentRef(std::shared_ptr handle);
+
+ // 通过 Element 继承
+ QString toOutsideHTML() const override;
+ QString toDefinitionHTML() const override;
+ };
+
+ /*
+ * @brief 情节片段本篇定义,存储情节引用定义
+ */
+ class Fragment : public Element{
+ private:
+ QList> additionals_store;
+
+ public:
+ Fragment(std::shared_ptr handle);
+
+ void appendRefers(std::shared_ptr inst);
+ QList> additionals() const;
+
+
+ // 通过 Element 继承
+ QString toOutsideHTML() const override;
+ QString toDefinitionHTML() const override;
+ };
+
+}
\ No newline at end of file
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.exe.recipe b/WsNovelParser/x64/Debug/WsNovelParser.exe.recipe
index 2faa3c2..9c4d2f1 100644
--- a/WsNovelParser/x64/Debug/WsNovelParser.exe.recipe
+++ b/WsNovelParser/x64/Debug/WsNovelParser.exe.recipe
@@ -2,7 +2,7 @@
- D:\Projects\Cpp\WsNovelParser\x64\Debug\WsNovelParser.exe
+ D:\Projects\Cpp\WsParser_VS\x64\Debug\WsNovelParser.exe
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.log b/WsNovelParser/x64/Debug/WsNovelParser.log
index 49b2113..33d3bf2 100644
--- a/WsNovelParser/x64/Debug/WsNovelParser.log
+++ b/WsNovelParser/x64/Debug/WsNovelParser.log
@@ -1,2 +1,2 @@
-锘 main.cpp
- WsNovelParser.vcxproj -> D:\Projects\Cpp\WsNovelParser\x64\Debug\WsNovelParser.exe
+锘 htmlprint.cpp
+ WsNovelParser.vcxproj -> D:\Projects\Cpp\WsParser_VS\x64\Debug\WsNovelParser.exe
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.command.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.command.1.tlog
index 5aa2196..7ea16cd 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.command.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.command.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.read.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.read.1.tlog
index 9d16926..391259d 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.read.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.read.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.write.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.write.1.tlog
index 513c127..7d498df 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.write.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/CL.write.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/Cl.items.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/Cl.items.tlog
index d932e86..2c6eccb 100644
--- a/WsNovelParser/x64/Debug/WsNovelParser.tlog/Cl.items.tlog
+++ b/WsNovelParser/x64/Debug/WsNovelParser.tlog/Cl.items.tlog
@@ -1,2 +1,3 @@
-D:\Projects\Cpp\WsNovelParser\WsNovelParser\main.cpp;D:\Projects\Cpp\WsNovelParser\WsNovelParser\x64\Debug\main.obj
-D:\Projects\Cpp\WsNovelParser\WsNovelParser\novelparser.cpp;D:\Projects\Cpp\WsNovelParser\WsNovelParser\x64\Debug\novelparser.obj
+D:\Projects\Cpp\WsParser_VS\WsNovelParser\htmlprint.cpp;D:\Projects\Cpp\WsParser_VS\WsNovelParser\x64\Debug\htmlprint.obj
+D:\Projects\Cpp\WsParser_VS\WsNovelParser\main.cpp;D:\Projects\Cpp\WsParser_VS\WsNovelParser\x64\Debug\main.obj
+D:\Projects\Cpp\WsParser_VS\WsNovelParser\novelparser.cpp;D:\Projects\Cpp\WsParser_VS\WsNovelParser\x64\Debug\novelparser.obj
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/WsNovelParser.lastbuildstate b/WsNovelParser/x64/Debug/WsNovelParser.tlog/WsNovelParser.lastbuildstate
index 74c2386..54e4d04 100644
--- a/WsNovelParser/x64/Debug/WsNovelParser.tlog/WsNovelParser.lastbuildstate
+++ b/WsNovelParser/x64/Debug/WsNovelParser.tlog/WsNovelParser.lastbuildstate
@@ -1,2 +1,2 @@
-PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.38.33130:TargetPlatformVersion=10.0.22621.0:
-Debug|x64|D:\Projects\Cpp\WsNovelParser\|
+PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.39.33519:TargetPlatformVersion=10.0.20348.0:
+Debug|x64|D:\Projects\Cpp\WsParser_VS\|
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.command.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.command.1.tlog
index 085ce51..eaaa8f7 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.command.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.command.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.read.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.read.1.tlog
index 2212cc7..87c2e72 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.read.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.read.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.secondary.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.secondary.1.tlog
new file mode 100644
index 0000000..c46fa3d
--- /dev/null
+++ b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.secondary.1.tlog
@@ -0,0 +1,2 @@
+^D:\PROJECTS\CPP\WSPARSER_VS\WSNOVELPARSER\X64\DEBUG\HTMLPRINT.OBJ|D:\PROJECTS\CPP\WSPARSER_VS\WSNOVELPARSER\X64\DEBUG\MAIN.OBJ|D:\PROJECTS\CPP\WSPARSER_VS\WSNOVELPARSER\X64\DEBUG\NOVELPARSER.OBJ
+D:\Projects\Cpp\WsParser_VS\x64\Debug\WsNovelParser.ILK
diff --git a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.write.1.tlog b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.write.1.tlog
index 339289a..38696fd 100644
Binary files a/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.write.1.tlog and b/WsNovelParser/x64/Debug/WsNovelParser.tlog/link.write.1.tlog differ
diff --git a/WsNovelParser/x64/Debug/htmlprint.obj b/WsNovelParser/x64/Debug/htmlprint.obj
new file mode 100644
index 0000000..5115bce
Binary files /dev/null and b/WsNovelParser/x64/Debug/htmlprint.obj differ
diff --git a/WsNovelParser/x64/Debug/main.obj b/WsNovelParser/x64/Debug/main.obj
index 77bfc29..905ff30 100644
Binary files a/WsNovelParser/x64/Debug/main.obj and b/WsNovelParser/x64/Debug/main.obj differ
diff --git a/WsNovelParser/x64/Debug/novelparser.obj b/WsNovelParser/x64/Debug/novelparser.obj
index 272de8b..11373ec 100644
Binary files a/WsNovelParser/x64/Debug/novelparser.obj and b/WsNovelParser/x64/Debug/novelparser.obj differ
diff --git a/WsNovelParser/x64/Debug/qmake/qtvars_x64_Debug.props b/WsNovelParser/x64/Debug/qmake/qtvars_x64_Debug.props
index 1abd6de..7ebb2e9 100644
--- a/WsNovelParser/x64/Debug/qmake/qtvars_x64_Debug.props
+++ b/WsNovelParser/x64/Debug/qmake/qtvars_x64_Debug.props
@@ -1,33 +1,33 @@
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
+_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_WIDGETS_LIB;QT_GUI_LIB;QT_XML_LIB;QT_CORE_LIB
+C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtWidgets;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtXml;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;/include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
MultiThreadedDebugDLL
-Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
+D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Widgetsd.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Xmld.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/Docs/Qt-5.12.11
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
+D:/Qt/Qt5.12.11/Examples/Qt-5.12.11
+D:/Qt/Qt5.12.11/Examples/Qt-5.12.11
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
win32-msvc
win32-msvc
3.1
@@ -37,7 +37,7 @@
5.12.11_msvc2017_64
core
+ >core;xml;gui;widgets
bin
- C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc;%(AdditionalIncludeDirectories)
+ C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtWidgets;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtXml;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;/include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc;%(AdditionalIncludeDirectories)
-Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus %(AdditionalOptions)
.\
false
@@ -41,7 +41,7 @@
Sync
.\
Disabled
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;%(PreprocessorDefinitions)
+ _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_WIDGETS_LIB;QT_GUI_LIB;QT_XML_LIB;QT_CORE_LIB;%(PreprocessorDefinitions)
false
MultiThreadedDebugDLL
true
@@ -49,7 +49,7 @@
TurnOffAllWarnings
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib;%(AdditionalDependencies)
+ D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Widgetsd.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Xmld.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib;%(AdditionalDependencies)
C:\openssl\lib;C:\Utils\my_sql\mysql-5.6.11-winx64\lib;C:\Utils\postgresql\pgsql\lib;%(AdditionalLibraryDirectories)
"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" %(AdditionalOptions)
true
@@ -66,14 +66,14 @@
0
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;_DEBUG;%(PreprocessorDefinitions)
+ _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_WIDGETS_LIB;QT_GUI_LIB;QT_XML_LIB;QT_CORE_LIB;_DEBUG;%(PreprocessorDefinitions)
Document
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp;%(AdditionalInputs)
- cl -BxC:\Qt\Qt5.12.11\5.12.11\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -E C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >moc_predefs.h
+ D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp;%(AdditionalInputs)
+ cl -BxD:\Qt\Qt5.12.11\5.12.11\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -E D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >moc_predefs.h
Generate moc_predefs.h
moc_predefs.h;%(Outputs)
diff --git a/WsNovelParser/x64/Debug/qmake/temp/qtvars_x64_Debug.props b/WsNovelParser/x64/Debug/qmake/temp/qtvars_x64_Debug.props
index 1abd6de..7ebb2e9 100644
--- a/WsNovelParser/x64/Debug/qmake/temp/qtvars_x64_Debug.props
+++ b/WsNovelParser/x64/Debug/qmake/temp/qtvars_x64_Debug.props
@@ -1,33 +1,33 @@
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\m1s45csx.rke;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
+_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_WIDGETS_LIB;QT_GUI_LIB;QT_XML_LIB;QT_CORE_LIB
+C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtWidgets;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtXml;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\gdp\AppData\Local\Temp\f1agvpbp.2le;/include;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
MultiThreadedDebugDLL
-Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
+D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Widgetsd.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Xmld.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;D:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/Docs/Qt-5.12.11
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
+D:/Qt/Qt5.12.11/Examples/Qt-5.12.11
+D:/Qt/Qt5.12.11/Examples/Qt-5.12.11
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
+D:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
win32-msvc
win32-msvc
3.1
@@ -37,7 +37,7 @@
5.12.11_msvc2017_64
core
+ >core;xml;gui;widgets
bin
-
-
-
- D:\Projects\Cpp\WsNovelParser\x64\Debug\libParse.dll
-
-
-
-
-
-
\ No newline at end of file
diff --git a/libParse/x64/Debug/libParse.log b/libParse/x64/Debug/libParse.log
deleted file mode 100644
index b6262e7..0000000
--- a/libParse/x64/Debug/libParse.log
+++ /dev/null
@@ -1,4 +0,0 @@
-锘 Reading Qt configuration (C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin/qmake)
- parse_novel.cpp
- libparse.cpp
- libParse.vcxproj -> D:\Projects\Cpp\WsNovelParser\x64\Debug\libParse.dll
diff --git a/libParse/x64/Debug/libParse.tlog/CL.10728.write.1.tlog b/libParse/x64/Debug/libParse.tlog/CL.10728.write.1.tlog
deleted file mode 100644
index 446b674..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/CL.10728.write.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/CL.command.1.tlog b/libParse/x64/Debug/libParse.tlog/CL.command.1.tlog
deleted file mode 100644
index b2bebfa..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/CL.command.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/CL.read.1.tlog b/libParse/x64/Debug/libParse.tlog/CL.read.1.tlog
deleted file mode 100644
index 5a3ea7c..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/CL.read.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/Cl.items.tlog b/libParse/x64/Debug/libParse.tlog/Cl.items.tlog
deleted file mode 100644
index d3fae37..0000000
--- a/libParse/x64/Debug/libParse.tlog/Cl.items.tlog
+++ /dev/null
@@ -1,2 +0,0 @@
-D:\Projects\Cpp\WsNovelParser\libParse\parse_novel.cpp;D:\Projects\Cpp\WsNovelParser\libParse\x64\Debug\parse_novel.obj
-D:\Projects\Cpp\WsNovelParser\libParse\libparse.cpp;D:\Projects\Cpp\WsNovelParser\libParse\x64\Debug\libparse.obj
diff --git a/libParse/x64/Debug/libParse.tlog/libParse.lastbuildstate b/libParse/x64/Debug/libParse.tlog/libParse.lastbuildstate
deleted file mode 100644
index 74c2386..0000000
--- a/libParse/x64/Debug/libParse.tlog/libParse.lastbuildstate
+++ /dev/null
@@ -1,2 +0,0 @@
-PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.38.33130:TargetPlatformVersion=10.0.22621.0:
-Debug|x64|D:\Projects\Cpp\WsNovelParser\|
diff --git a/libParse/x64/Debug/libParse.tlog/link.command.1.tlog b/libParse/x64/Debug/libParse.tlog/link.command.1.tlog
deleted file mode 100644
index bbddbeb..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/link.command.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/link.read.1.tlog b/libParse/x64/Debug/libParse.tlog/link.read.1.tlog
deleted file mode 100644
index 360213c..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/link.read.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/link.write.1.tlog b/libParse/x64/Debug/libParse.tlog/link.write.1.tlog
deleted file mode 100644
index 852a83b..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/link.write.1.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.tlog/link.write.2u.tlog b/libParse/x64/Debug/libParse.tlog/link.write.2u.tlog
deleted file mode 100644
index a5e8c45..0000000
Binary files a/libParse/x64/Debug/libParse.tlog/link.write.2u.tlog and /dev/null differ
diff --git a/libParse/x64/Debug/libParse.vcxproj.FileListAbsolute.txt b/libParse/x64/Debug/libParse.vcxproj.FileListAbsolute.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/libParse/x64/Debug/libparse.obj b/libParse/x64/Debug/libparse.obj
deleted file mode 100644
index c0186d8..0000000
Binary files a/libParse/x64/Debug/libparse.obj and /dev/null differ
diff --git a/libParse/x64/Debug/parse_novel.obj b/libParse/x64/Debug/parse_novel.obj
deleted file mode 100644
index 8b15f2d..0000000
Binary files a/libParse/x64/Debug/parse_novel.obj and /dev/null differ
diff --git a/libParse/x64/Debug/qmake/qtvars_x64_Debug.props b/libParse/x64/Debug/qmake/qtvars_x64_Debug.props
deleted file mode 100644
index 5fc061d..0000000
--- a/libParse/x64/Debug/qmake/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libParse/x64/Debug/qmake/temp/.qmake.stash b/libParse/x64/Debug/qmake/temp/.qmake.stash
deleted file mode 100644
index ebb6a14..0000000
--- a/libParse/x64/Debug/qmake/temp/.qmake.stash
+++ /dev/null
@@ -1,29 +0,0 @@
-QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
-QMAKE_CXX.QMAKE_MSC_VER = 1938
-QMAKE_CXX.QMAKE_MSC_FULL_VER = 193833130
-QMAKE_CXX.COMPILER_MACROS = \
- QT_COMPILER_STDCXX \
- QMAKE_MSC_VER \
- QMAKE_MSC_FULL_VER
-QMAKE_CXX.INCDIRS = \
- D:\\Projects\\Cpp\\WsNovelParser\\libToken\\ \
- D:\\Projects\\Cpp\\WsNovelParser\\libSyntax\\ \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\Include\\um"
-QMAKE_CXX.LIBDIRS = \
- D:\\Projects\\Cpp\\WsNovelParser\\x64\\Debug\\ \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\lib\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\ucrt\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\lib" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\um\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\lib\\um\\x64"
diff --git a/libParse/x64/Debug/qmake/temp/moc_predefs.h.cbt b/libParse/x64/Debug/qmake/temp/moc_predefs.h.cbt
deleted file mode 100644
index 693383c..0000000
--- a/libParse/x64/Debug/qmake/temp/moc_predefs.h.cbt
+++ /dev/null
@@ -1 +0,0 @@
-This is a dummy file needed to create ./moc_predefs.h
diff --git a/libParse/x64/Debug/qmake/temp/props.txt b/libParse/x64/Debug/qmake/temp/props.txt
deleted file mode 100644
index 927788a..0000000
--- a/libParse/x64/Debug/qmake/temp/props.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-QT_SYSROOT:
-QT_INSTALL_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_ARCHDATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DOCS:C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-QT_INSTALL_HEADERS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-QT_INSTALL_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QT_INSTALL_LIBEXECS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_TESTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-QT_INSTALL_PLUGINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-QT_INSTALL_IMPORTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-QT_INSTALL_QML:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-QT_INSTALL_TRANSLATIONS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-QT_INSTALL_CONFIGURATION:
-QT_INSTALL_EXAMPLES:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_INSTALL_DEMOS:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_HOST_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_HOST_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QMAKE_SPEC:win32-msvc
-QMAKE_XSPEC:win32-msvc
-QMAKE_VERSION:3.1
-QT_VERSION:5.12.11
diff --git a/libParse/x64/Debug/qmake/temp/qtvars.log b/libParse/x64/Debug/qmake/temp/qtvars.log
deleted file mode 100644
index 5f2011d..0000000
--- a/libParse/x64/Debug/qmake/temp/qtvars.log
+++ /dev/null
@@ -1 +0,0 @@
-Info: creating stash file C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl\.qmake.stash
diff --git a/libParse/x64/Debug/qmake/temp/qtvars.pro b/libParse/x64/Debug/qmake/temp/qtvars.pro
deleted file mode 100644
index 35a36b7..0000000
--- a/libParse/x64/Debug/qmake/temp/qtvars.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-CONFIG += no_fixpath
-QT += core
diff --git a/libParse/x64/Debug/qmake/temp/qtvars.vcxproj b/libParse/x64/Debug/qmake/temp/qtvars.vcxproj
deleted file mode 100644
index dccfe79..0000000
--- a/libParse/x64/Debug/qmake/temp/qtvars.vcxproj
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- Debug
- x64
-
-
-
-
- qtvars
- Qt4VSv1.0
-
-
-
- v142
- .\
- false
- NotSet
- Application
- qtvars
-
-
-
-
-
-
-
-
- .\
- qtvars
- true
-
-
-
- C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc;%(AdditionalIncludeDirectories)
- -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus %(AdditionalOptions)
- .\
- false
- ProgramDatabase
- Sync
- .\
- Disabled
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;%(PreprocessorDefinitions)
- false
- MultiThreadedDebugDLL
- true
- true
- TurnOffAllWarnings
-
-
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib;%(AdditionalDependencies)
- C:\openssl\lib;C:\Utils\my_sql\mysql-5.6.11-winx64\lib;C:\Utils\postgresql\pgsql\lib;%(AdditionalLibraryDirectories)
- "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" %(AdditionalOptions)
- true
- true
- true
- $(OutDir)\qtvars.exe
- true
- Windows
- true
-
-
- Unsigned
- None
- 0
-
-
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;_DEBUG;%(PreprocessorDefinitions)
-
-
-
-
- Document
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp;%(AdditionalInputs)
- cl -BxC:\Qt\Qt5.12.11\5.12.11\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -E C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >moc_predefs.h
- Generate moc_predefs.h
- moc_predefs.h;%(Outputs)
-
-
-
-
-
\ No newline at end of file
diff --git a/libParse/x64/Debug/qmake/temp/qtvars.vcxproj.filters b/libParse/x64/Debug/qmake/temp/qtvars.vcxproj.filters
deleted file mode 100644
index a5e61b7..0000000
--- a/libParse/x64/Debug/qmake/temp/qtvars.vcxproj.filters
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}
- cpp;c;cxx;moc;h;def;odl;idl;res;
-
-
-
-
- Generated Files
-
-
-
\ No newline at end of file
diff --git a/libParse/x64/Debug/qmake/temp/qtvars_x64_Debug.props b/libParse/x64/Debug/qmake/temp/qtvars_x64_Debug.props
deleted file mode 100644
index 5fc061d..0000000
--- a/libParse/x64/Debug/qmake/temp/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\uxrn0hd5.abl;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libParse/x64/Debug/qt.natvis b/libParse/x64/Debug/qt.natvis
deleted file mode 100644
index 7d18567..0000000
--- a/libParse/x64/Debug/qt.natvis
+++ /dev/null
@@ -1,814 +0,0 @@
-
-
-
-
-
-
- {{{data1,Xb}-{data2,Xb}-{data3,Xb}-{(data4[0]),nvoXb}{(data4[1]),nvoXb}-{(data4[2]),nvoXb}{(data4[3]),nvoXb}{(data4[4]),nvoXb}{(data4[5]),nvoXb}{(data4[6]),nvoXb}{(data4[7]),nvoXb}}}
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {x1}, y = {y1}, width = {x2 - x1 + 1}, height = {y2 - y1 + 1} }}
-
- - x1
- - y1
- - x2 - x1 + 1
- - y2 - y1 + 1
-
-
-
-
- {{ x = {xp}, y = {yp}, width = {w}, height = {h} }}
-
- - xp
- - yp
- - w
- - h
-
-
-
-
-
- {{ width = {wd}, height = {ht} }}
-
- - wd
- - ht
-
-
-
-
-
- {{ start point = {pt1}, end point = {pt2} }}
-
-
- {pt1}
-
- pt1
-
-
-
- {pt2}
-
- pt2
-
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- (QPoint*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ size = {d->size} }}
-
- -
- d->size > 0
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).xp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).xp)
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).yp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).yp)
-
- - d->ref.atomic._q_value
-
- d->size
- (QPointF*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp} }}
-
- - xp
- - yp
- - zp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp}, w = {wp} }}
-
- - xp
- - yp
- - zp
- - wp
-
-
-
-
-
- {{ m11 = {_m11}, m12 = {_m12}, m21 = {_m21}, m22 = {_m22}, ... }}
-
-
- - _m11
- - _m12
- - _m21
- - _m22
- - _dx
- - _dy
-
-
-
-
-
- {{ m11 = {m[0][0]}, m12 = {m[1][0]}, m13 = {m[2][0]}, m14 = {m[3][0]}, ... }}
-
-
- - m[0][0]
- - m[1][0]
- - m[2][0]
- - m[3][0]
- - m[0][1]
- - m[1][1]
- - m[2][1]
- - m[3][1]
- - m[0][2]
- - m[1][2]
- - m[2][2]
- - m[3][2]
- - m[0][3]
- - m[1][3]
- - m[2][3]
- - m[3][3]
-
-
-
-
-
- {{ horizontal = {static_cast<Policy>(bits.horPolicy)}, vertical = {static_cast<Policy>(bits.verPolicy)}, type = {ControlType(1 << bits.ctype)} }}
-
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.verPolicy)}
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.horPolicy)}
-
-
- QSizePolicy::ControlType::{ControlType(1 << bits.ctype)}
-
-
-
- Qt::Vertical (2)
-
-
- Qt::Horizontal (1)
-
-
- - static_cast<int>(bits.verStretch)
- - static_cast<int>(bits.horStretch)
- - bits.hfw == 1
- - bits.wfh == 1
-
-
-
-
- {ucs,c}
- ucs,c
-
- - ucs > 0xff ? '\0' : char(ucs),c
- - ucs,c
-
-
-
-
- {((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub}
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),c
-
-
-
-
-
-
- {m_string,[m_size]} u""
- {offset() + m_position,[m_size]}
-
- - m_position
- - m_size
-
- m_size
- offset()+m_position
-
-
-
-
-
- {m_data,[m_size]}
- m_data,[m_size]
-
- - m_size
-
- m_size
- m_data
-
-
-
-
-
- {((reinterpret_cast<char*>(d)) + d->offset),sb}
- ((reinterpret_cast<char*>(d)) + d->offset),sb
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<char*>(d)) + d->offset),c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {scheme()}://{host()}{path()}
- {path()}
-
- - scheme()
- - username()
- - password()
- - host()
- - path()
- - query()
- - fragment()
-
-
-
-
- {{ size = {(d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)} }}
-
- - d.d->ref.atomic._q_value
-
- (d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)
-
- (*(reinterpret_cast<const unsigned char*>((reinterpret_cast<char*>(d.d)) + d.d->offset) + 1
- + ($i >> 3)) & (1 << ($i & 7))) != 0
-
-
-
-
-
-
-
- {{ size = {s} }}
-
- - a
-
- s
- ptr
-
-
-
-
-
- {{ julian day = {jd} }}
-
-
-
-
- {{ millisecond = {mds} }}
- {{ milliseconds = {mds} }}
-
- - mds / 3600000, d
- - mds / 3600000, d
- - (mds % 3600000) / 60000, d
- - (mds % 3600000) / 60000, d
- - (mds / 1000) % 60, d
- - (mds / 1000) % 60, d
- - mds % 1000, d
- - mds % 1000, d
-
-
-
-
- {d.pattern}
-
-
-
-
- - ref._q_value
-
-
-
-
- strong reference to shared pointer of type {"$T1"}
-
- - value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- pointer to implicit shared object of type {"$T1"}
-
- d
-
-
-
-
- pointer to explicit shared object of type {"$T1"}
-
- d
-
-
-
-
- guarded pointer to subclass of QObject of type {"$T1"}
-
- - wp.d == 0 || wp.d->strongref._q_value == 0 || wp.value == 0
-
-
-
-
- weak reference to shared pointer of type {"$T1"}
-
- - d == 0 || d->strongref._q_value == 0 || value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- scoped pointer to a dynamically allocated object of type {"$T1"}
-
- - !d
-
-
-
-
- scoped pointer to dynamically allocated array of objects of type {"$T1"}
-
- - !d
-
-
-
-
- ({first}, {second})
-
- - first
- - second
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- ($T1*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
- *reinterpret_cast<$T1*>((sizeof($T1) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<$T1*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QString*>((sizeof(QString) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QString*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QVariant*>((sizeof(QVariant) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QVariant*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->n
- n
- (*(QLinkedListNode<$T1>*)this).t
-
-
-
-
-
- ({key}, {value})
-
- - key
- - value
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->header.left
- left
- right
- *((QMapNode<$T1,$T2>*)this)
-
-
-
-
-
- (empty)
- ({key}, {value})
-
- - key
- - value
- - next
-
-
-
-
-
- {{ size = {d->size} }}
-
-
- d->numBuckets
- reinterpret_cast<Node **>(d->buckets)
-
-
-
-
-
-
- d->size
-
-
- node = *(bucket++)
- --n
-
-
- keyValuePair = reinterpret_cast<Node *>(node)
- - keyValuePair->value
- node = node->next
-
-
-
-
-
-
-
- (empty)
- ({key})
-
- - key
-
-
-
-
- {{ size = {q_hash.d->size} }}
-
- q_hash
-
-
-
-
- ({*keyPtr}, {*t})
-
- - *keyPtr
- - *t
-
-
-
-
- {{ size = {hash.d->size} }}
-
- - mx
- - total
- - hash.d->ref.atomic._q_value
-
- hash.d->size
- f
- n
- *((Node*)this)
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ row count = {(*d_ptr.d).rows()}, column count = {(*d_ptr.d).columns()} }}
-
- - d_ptr.d,!
- - (*d_ptr.d).rows()
- - (*d_ptr.d).columns()
-
-
-
-
-
-
- Invalid
- {d.data.b}
- {d.data.i}
- {d.data.u}
- {d.data.ll}
- {d.data.ull}
- {d.data.d}
- {d.data.c}
-
- {*((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- DateTime
- Url
- Locale
-
- {*((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- RegExp
- RegularExpression
-
- {*((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- EasingCurve
- Uuid
- ModelIndex
- LastCoreType
- Font
- Pixmap
- Brush
- Color
- Palette
- Image
- Polygon
- Region
- Bitmap
- Cursor
- KeySequence
- Pen
- TextLength
- TextFormat
- Matrix
- Transform
- Matrix4x4
- Vector2D
- Vector3D
- Vector4D
- Quaternion
- PolygonF
- Icon
- LastGuiType
- SizePolicy
- UserType
- LastType
-
-
-
-
-
- d.data.c
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
-
- *((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
diff --git a/libParse/x64/Debug/vc143.pdb b/libParse/x64/Debug/vc143.pdb
deleted file mode 100644
index 0374874..0000000
Binary files a/libParse/x64/Debug/vc143.pdb and /dev/null differ
diff --git a/libSyntax/x64/Debug/ast_basic.obj b/libSyntax/x64/Debug/ast_basic.obj
deleted file mode 100644
index 12d3ca0..0000000
Binary files a/libSyntax/x64/Debug/ast_basic.obj and /dev/null differ
diff --git a/libSyntax/x64/Debug/ast_gen.obj b/libSyntax/x64/Debug/ast_gen.obj
deleted file mode 100644
index 86fdd63..0000000
Binary files a/libSyntax/x64/Debug/ast_gen.obj and /dev/null differ
diff --git a/libSyntax/x64/Debug/ast_novel.obj b/libSyntax/x64/Debug/ast_novel.obj
deleted file mode 100644
index 494d6aa..0000000
Binary files a/libSyntax/x64/Debug/ast_novel.obj and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.Build.CppClean.log b/libSyntax/x64/Debug/libSyntax.Build.CppClean.log
deleted file mode 100644
index 369fdb2..0000000
--- a/libSyntax/x64/Debug/libSyntax.Build.CppClean.log
+++ /dev/null
@@ -1,19 +0,0 @@
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\ast_basic.obj
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\ast_gen.obj
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\ast_novel.obj
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.obj
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\syntax_novel.obj
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\vc143.pdb
-d:\projects\cpp\wsnovelparser\x64\debug\libsyntax.lib
-d:\projects\cpp\wsnovelparser\x64\debug\libsyntax.exp
-d:\projects\cpp\wsnovelparser\x64\debug\libsyntax.dll
-d:\projects\cpp\wsnovelparser\x64\debug\libsyntax.ilk
-d:\projects\cpp\wsnovelparser\x64\debug\libsyntax.pdb
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\cl.13288.write.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\cl.command.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\cl.items.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\cl.read.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\link.command.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\link.read.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\link.write.1.tlog
-d:\projects\cpp\wsnovelparser\libsyntax\x64\debug\libsyntax.tlog\link.write.2u.tlog
diff --git a/libSyntax/x64/Debug/libSyntax.dll.recipe b/libSyntax/x64/Debug/libSyntax.dll.recipe
deleted file mode 100644
index 7e28c3d..0000000
--- a/libSyntax/x64/Debug/libSyntax.dll.recipe
+++ /dev/null
@@ -1,11 +0,0 @@
-锘
-
-
-
- D:\Projects\Cpp\WsNovelParser\x64\Debug\libSyntax.dll
-
-
-
-
-
-
\ No newline at end of file
diff --git a/libSyntax/x64/Debug/libSyntax.log b/libSyntax/x64/Debug/libSyntax.log
deleted file mode 100644
index 617be9a..0000000
--- a/libSyntax/x64/Debug/libSyntax.log
+++ /dev/null
@@ -1,7 +0,0 @@
-锘 Reading Qt configuration (C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin/qmake)
- syntax_novel.cpp
- ast_basic.cpp
- ast_gen.cpp
- ast_novel.cpp
- libsyntax.cpp
- libSyntax.vcxproj -> D:\Projects\Cpp\WsNovelParser\x64\Debug\libSyntax.dll
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/CL.16564.write.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/CL.16564.write.1.tlog
deleted file mode 100644
index 7a40aa8..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/CL.16564.write.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/CL.command.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/CL.command.1.tlog
deleted file mode 100644
index c0e61d5..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/CL.command.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/CL.read.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/CL.read.1.tlog
deleted file mode 100644
index 9ce27e1..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/CL.read.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/Cl.items.tlog b/libSyntax/x64/Debug/libSyntax.tlog/Cl.items.tlog
deleted file mode 100644
index dd74762..0000000
--- a/libSyntax/x64/Debug/libSyntax.tlog/Cl.items.tlog
+++ /dev/null
@@ -1,5 +0,0 @@
-D:\Projects\Cpp\WsNovelParser\libSyntax\syntax_novel.cpp;D:\Projects\Cpp\WsNovelParser\libSyntax\x64\Debug\syntax_novel.obj
-D:\Projects\Cpp\WsNovelParser\libSyntax\ast_basic.cpp;D:\Projects\Cpp\WsNovelParser\libSyntax\x64\Debug\ast_basic.obj
-D:\Projects\Cpp\WsNovelParser\libSyntax\ast_gen.cpp;D:\Projects\Cpp\WsNovelParser\libSyntax\x64\Debug\ast_gen.obj
-D:\Projects\Cpp\WsNovelParser\libSyntax\ast_novel.cpp;D:\Projects\Cpp\WsNovelParser\libSyntax\x64\Debug\ast_novel.obj
-D:\Projects\Cpp\WsNovelParser\libSyntax\libsyntax.cpp;D:\Projects\Cpp\WsNovelParser\libSyntax\x64\Debug\libsyntax.obj
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/libSyntax.lastbuildstate b/libSyntax/x64/Debug/libSyntax.tlog/libSyntax.lastbuildstate
deleted file mode 100644
index 74c2386..0000000
--- a/libSyntax/x64/Debug/libSyntax.tlog/libSyntax.lastbuildstate
+++ /dev/null
@@ -1,2 +0,0 @@
-PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.38.33130:TargetPlatformVersion=10.0.22621.0:
-Debug|x64|D:\Projects\Cpp\WsNovelParser\|
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/link.command.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/link.command.1.tlog
deleted file mode 100644
index ca3312b..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/link.command.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/link.read.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/link.read.1.tlog
deleted file mode 100644
index 47ee95a..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/link.read.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/link.write.1.tlog b/libSyntax/x64/Debug/libSyntax.tlog/link.write.1.tlog
deleted file mode 100644
index 86d130f..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/link.write.1.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.tlog/link.write.2u.tlog b/libSyntax/x64/Debug/libSyntax.tlog/link.write.2u.tlog
deleted file mode 100644
index 428539c..0000000
Binary files a/libSyntax/x64/Debug/libSyntax.tlog/link.write.2u.tlog and /dev/null differ
diff --git a/libSyntax/x64/Debug/libSyntax.vcxproj.FileListAbsolute.txt b/libSyntax/x64/Debug/libSyntax.vcxproj.FileListAbsolute.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/libSyntax/x64/Debug/libsyntax.obj b/libSyntax/x64/Debug/libsyntax.obj
deleted file mode 100644
index 900dd17..0000000
Binary files a/libSyntax/x64/Debug/libsyntax.obj and /dev/null differ
diff --git a/libSyntax/x64/Debug/qmake/qtvars_x64_Debug.props b/libSyntax/x64/Debug/qmake/qtvars_x64_Debug.props
deleted file mode 100644
index 081da0d..0000000
--- a/libSyntax/x64/Debug/qmake/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libSyntax/x64/Debug/qmake/temp/.qmake.stash b/libSyntax/x64/Debug/qmake/temp/.qmake.stash
deleted file mode 100644
index 786a319..0000000
--- a/libSyntax/x64/Debug/qmake/temp/.qmake.stash
+++ /dev/null
@@ -1,28 +0,0 @@
-QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
-QMAKE_CXX.QMAKE_MSC_VER = 1938
-QMAKE_CXX.QMAKE_MSC_FULL_VER = 193833130
-QMAKE_CXX.COMPILER_MACROS = \
- QT_COMPILER_STDCXX \
- QMAKE_MSC_VER \
- QMAKE_MSC_FULL_VER
-QMAKE_CXX.INCDIRS = \
- D:\\Projects\\Cpp\\WsNovelParser\\libToken\\ \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\Include\\um"
-QMAKE_CXX.LIBDIRS = \
- D:\\Projects\\Cpp\\WsNovelParser\\x64\\Debug\\ \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\lib\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\ucrt\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\lib" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\um\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\lib\\um\\x64"
diff --git a/libSyntax/x64/Debug/qmake/temp/moc_predefs.h.cbt b/libSyntax/x64/Debug/qmake/temp/moc_predefs.h.cbt
deleted file mode 100644
index 693383c..0000000
--- a/libSyntax/x64/Debug/qmake/temp/moc_predefs.h.cbt
+++ /dev/null
@@ -1 +0,0 @@
-This is a dummy file needed to create ./moc_predefs.h
diff --git a/libSyntax/x64/Debug/qmake/temp/props.txt b/libSyntax/x64/Debug/qmake/temp/props.txt
deleted file mode 100644
index 927788a..0000000
--- a/libSyntax/x64/Debug/qmake/temp/props.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-QT_SYSROOT:
-QT_INSTALL_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_ARCHDATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DOCS:C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-QT_INSTALL_HEADERS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-QT_INSTALL_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QT_INSTALL_LIBEXECS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_TESTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-QT_INSTALL_PLUGINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-QT_INSTALL_IMPORTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-QT_INSTALL_QML:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-QT_INSTALL_TRANSLATIONS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-QT_INSTALL_CONFIGURATION:
-QT_INSTALL_EXAMPLES:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_INSTALL_DEMOS:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_HOST_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_HOST_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QMAKE_SPEC:win32-msvc
-QMAKE_XSPEC:win32-msvc
-QMAKE_VERSION:3.1
-QT_VERSION:5.12.11
diff --git a/libSyntax/x64/Debug/qmake/temp/qtvars.log b/libSyntax/x64/Debug/qmake/temp/qtvars.log
deleted file mode 100644
index 0ff8401..0000000
--- a/libSyntax/x64/Debug/qmake/temp/qtvars.log
+++ /dev/null
@@ -1 +0,0 @@
-Info: creating stash file C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb\.qmake.stash
diff --git a/libSyntax/x64/Debug/qmake/temp/qtvars.pro b/libSyntax/x64/Debug/qmake/temp/qtvars.pro
deleted file mode 100644
index 35a36b7..0000000
--- a/libSyntax/x64/Debug/qmake/temp/qtvars.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-CONFIG += no_fixpath
-QT += core
diff --git a/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj b/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj
deleted file mode 100644
index 58d788e..0000000
--- a/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- Debug
- x64
-
-
-
-
- qtvars
- Qt4VSv1.0
-
-
-
- v142
- .\
- false
- NotSet
- Application
- qtvars
-
-
-
-
-
-
-
-
- .\
- qtvars
- true
-
-
-
- C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc;%(AdditionalIncludeDirectories)
- -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus %(AdditionalOptions)
- .\
- false
- ProgramDatabase
- Sync
- .\
- Disabled
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;%(PreprocessorDefinitions)
- false
- MultiThreadedDebugDLL
- true
- true
- TurnOffAllWarnings
-
-
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib;%(AdditionalDependencies)
- C:\openssl\lib;C:\Utils\my_sql\mysql-5.6.11-winx64\lib;C:\Utils\postgresql\pgsql\lib;%(AdditionalLibraryDirectories)
- "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" %(AdditionalOptions)
- true
- true
- true
- $(OutDir)\qtvars.exe
- true
- Windows
- true
-
-
- Unsigned
- None
- 0
-
-
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;_DEBUG;%(PreprocessorDefinitions)
-
-
-
-
- Document
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp;%(AdditionalInputs)
- cl -BxC:\Qt\Qt5.12.11\5.12.11\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -E C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >moc_predefs.h
- Generate moc_predefs.h
- moc_predefs.h;%(Outputs)
-
-
-
-
-
\ No newline at end of file
diff --git a/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj.filters b/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj.filters
deleted file mode 100644
index a5e61b7..0000000
--- a/libSyntax/x64/Debug/qmake/temp/qtvars.vcxproj.filters
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}
- cpp;c;cxx;moc;h;def;odl;idl;res;
-
-
-
-
- Generated Files
-
-
-
\ No newline at end of file
diff --git a/libSyntax/x64/Debug/qmake/temp/qtvars_x64_Debug.props b/libSyntax/x64/Debug/qmake/temp/qtvars_x64_Debug.props
deleted file mode 100644
index 081da0d..0000000
--- a/libSyntax/x64/Debug/qmake/temp/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\xulbqhsw.4tb;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libSyntax/x64/Debug/qt.natvis b/libSyntax/x64/Debug/qt.natvis
deleted file mode 100644
index 7d18567..0000000
--- a/libSyntax/x64/Debug/qt.natvis
+++ /dev/null
@@ -1,814 +0,0 @@
-
-
-
-
-
-
- {{{data1,Xb}-{data2,Xb}-{data3,Xb}-{(data4[0]),nvoXb}{(data4[1]),nvoXb}-{(data4[2]),nvoXb}{(data4[3]),nvoXb}{(data4[4]),nvoXb}{(data4[5]),nvoXb}{(data4[6]),nvoXb}{(data4[7]),nvoXb}}}
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {x1}, y = {y1}, width = {x2 - x1 + 1}, height = {y2 - y1 + 1} }}
-
- - x1
- - y1
- - x2 - x1 + 1
- - y2 - y1 + 1
-
-
-
-
- {{ x = {xp}, y = {yp}, width = {w}, height = {h} }}
-
- - xp
- - yp
- - w
- - h
-
-
-
-
-
- {{ width = {wd}, height = {ht} }}
-
- - wd
- - ht
-
-
-
-
-
- {{ start point = {pt1}, end point = {pt2} }}
-
-
- {pt1}
-
- pt1
-
-
-
- {pt2}
-
- pt2
-
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- (QPoint*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ size = {d->size} }}
-
- -
- d->size > 0
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).xp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).xp)
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).yp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).yp)
-
- - d->ref.atomic._q_value
-
- d->size
- (QPointF*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp} }}
-
- - xp
- - yp
- - zp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp}, w = {wp} }}
-
- - xp
- - yp
- - zp
- - wp
-
-
-
-
-
- {{ m11 = {_m11}, m12 = {_m12}, m21 = {_m21}, m22 = {_m22}, ... }}
-
-
- - _m11
- - _m12
- - _m21
- - _m22
- - _dx
- - _dy
-
-
-
-
-
- {{ m11 = {m[0][0]}, m12 = {m[1][0]}, m13 = {m[2][0]}, m14 = {m[3][0]}, ... }}
-
-
- - m[0][0]
- - m[1][0]
- - m[2][0]
- - m[3][0]
- - m[0][1]
- - m[1][1]
- - m[2][1]
- - m[3][1]
- - m[0][2]
- - m[1][2]
- - m[2][2]
- - m[3][2]
- - m[0][3]
- - m[1][3]
- - m[2][3]
- - m[3][3]
-
-
-
-
-
- {{ horizontal = {static_cast<Policy>(bits.horPolicy)}, vertical = {static_cast<Policy>(bits.verPolicy)}, type = {ControlType(1 << bits.ctype)} }}
-
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.verPolicy)}
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.horPolicy)}
-
-
- QSizePolicy::ControlType::{ControlType(1 << bits.ctype)}
-
-
-
- Qt::Vertical (2)
-
-
- Qt::Horizontal (1)
-
-
- - static_cast<int>(bits.verStretch)
- - static_cast<int>(bits.horStretch)
- - bits.hfw == 1
- - bits.wfh == 1
-
-
-
-
- {ucs,c}
- ucs,c
-
- - ucs > 0xff ? '\0' : char(ucs),c
- - ucs,c
-
-
-
-
- {((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub}
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),c
-
-
-
-
-
-
- {m_string,[m_size]} u""
- {offset() + m_position,[m_size]}
-
- - m_position
- - m_size
-
- m_size
- offset()+m_position
-
-
-
-
-
- {m_data,[m_size]}
- m_data,[m_size]
-
- - m_size
-
- m_size
- m_data
-
-
-
-
-
- {((reinterpret_cast<char*>(d)) + d->offset),sb}
- ((reinterpret_cast<char*>(d)) + d->offset),sb
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<char*>(d)) + d->offset),c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {scheme()}://{host()}{path()}
- {path()}
-
- - scheme()
- - username()
- - password()
- - host()
- - path()
- - query()
- - fragment()
-
-
-
-
- {{ size = {(d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)} }}
-
- - d.d->ref.atomic._q_value
-
- (d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)
-
- (*(reinterpret_cast<const unsigned char*>((reinterpret_cast<char*>(d.d)) + d.d->offset) + 1
- + ($i >> 3)) & (1 << ($i & 7))) != 0
-
-
-
-
-
-
-
- {{ size = {s} }}
-
- - a
-
- s
- ptr
-
-
-
-
-
- {{ julian day = {jd} }}
-
-
-
-
- {{ millisecond = {mds} }}
- {{ milliseconds = {mds} }}
-
- - mds / 3600000, d
- - mds / 3600000, d
- - (mds % 3600000) / 60000, d
- - (mds % 3600000) / 60000, d
- - (mds / 1000) % 60, d
- - (mds / 1000) % 60, d
- - mds % 1000, d
- - mds % 1000, d
-
-
-
-
- {d.pattern}
-
-
-
-
- - ref._q_value
-
-
-
-
- strong reference to shared pointer of type {"$T1"}
-
- - value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- pointer to implicit shared object of type {"$T1"}
-
- d
-
-
-
-
- pointer to explicit shared object of type {"$T1"}
-
- d
-
-
-
-
- guarded pointer to subclass of QObject of type {"$T1"}
-
- - wp.d == 0 || wp.d->strongref._q_value == 0 || wp.value == 0
-
-
-
-
- weak reference to shared pointer of type {"$T1"}
-
- - d == 0 || d->strongref._q_value == 0 || value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- scoped pointer to a dynamically allocated object of type {"$T1"}
-
- - !d
-
-
-
-
- scoped pointer to dynamically allocated array of objects of type {"$T1"}
-
- - !d
-
-
-
-
- ({first}, {second})
-
- - first
- - second
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- ($T1*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
- *reinterpret_cast<$T1*>((sizeof($T1) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<$T1*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QString*>((sizeof(QString) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QString*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QVariant*>((sizeof(QVariant) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QVariant*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->n
- n
- (*(QLinkedListNode<$T1>*)this).t
-
-
-
-
-
- ({key}, {value})
-
- - key
- - value
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->header.left
- left
- right
- *((QMapNode<$T1,$T2>*)this)
-
-
-
-
-
- (empty)
- ({key}, {value})
-
- - key
- - value
- - next
-
-
-
-
-
- {{ size = {d->size} }}
-
-
- d->numBuckets
- reinterpret_cast<Node **>(d->buckets)
-
-
-
-
-
-
- d->size
-
-
- node = *(bucket++)
- --n
-
-
- keyValuePair = reinterpret_cast<Node *>(node)
- - keyValuePair->value
- node = node->next
-
-
-
-
-
-
-
- (empty)
- ({key})
-
- - key
-
-
-
-
- {{ size = {q_hash.d->size} }}
-
- q_hash
-
-
-
-
- ({*keyPtr}, {*t})
-
- - *keyPtr
- - *t
-
-
-
-
- {{ size = {hash.d->size} }}
-
- - mx
- - total
- - hash.d->ref.atomic._q_value
-
- hash.d->size
- f
- n
- *((Node*)this)
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ row count = {(*d_ptr.d).rows()}, column count = {(*d_ptr.d).columns()} }}
-
- - d_ptr.d,!
- - (*d_ptr.d).rows()
- - (*d_ptr.d).columns()
-
-
-
-
-
-
- Invalid
- {d.data.b}
- {d.data.i}
- {d.data.u}
- {d.data.ll}
- {d.data.ull}
- {d.data.d}
- {d.data.c}
-
- {*((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- DateTime
- Url
- Locale
-
- {*((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- RegExp
- RegularExpression
-
- {*((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- EasingCurve
- Uuid
- ModelIndex
- LastCoreType
- Font
- Pixmap
- Brush
- Color
- Palette
- Image
- Polygon
- Region
- Bitmap
- Cursor
- KeySequence
- Pen
- TextLength
- TextFormat
- Matrix
- Transform
- Matrix4x4
- Vector2D
- Vector3D
- Vector4D
- Quaternion
- PolygonF
- Icon
- LastGuiType
- SizePolicy
- UserType
- LastType
-
-
-
-
-
- d.data.c
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
-
- *((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
diff --git a/libSyntax/x64/Debug/syntax_novel.obj b/libSyntax/x64/Debug/syntax_novel.obj
deleted file mode 100644
index 2f483cc..0000000
Binary files a/libSyntax/x64/Debug/syntax_novel.obj and /dev/null differ
diff --git a/libSyntax/x64/Debug/vc143.pdb b/libSyntax/x64/Debug/vc143.pdb
deleted file mode 100644
index 6e383e8..0000000
Binary files a/libSyntax/x64/Debug/vc143.pdb and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.Build.CppClean.log b/libToken/x64/Debug/libToken.Build.CppClean.log
deleted file mode 100644
index 283f3ba..0000000
--- a/libToken/x64/Debug/libToken.Build.CppClean.log
+++ /dev/null
@@ -1,16 +0,0 @@
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.obj
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\tokens_novel.obj
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\vc143.pdb
-d:\projects\cpp\wsnovelparser\x64\debug\libtoken.lib
-d:\projects\cpp\wsnovelparser\x64\debug\libtoken.exp
-d:\projects\cpp\wsnovelparser\x64\debug\libtoken.dll
-d:\projects\cpp\wsnovelparser\x64\debug\libtoken.ilk
-d:\projects\cpp\wsnovelparser\x64\debug\libtoken.pdb
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\cl.18772.write.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\cl.command.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\cl.items.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\cl.read.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\link.command.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\link.read.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\link.write.1.tlog
-d:\projects\cpp\wsnovelparser\libtoken\x64\debug\libtoken.tlog\link.write.2u.tlog
diff --git a/libToken/x64/Debug/libToken.dll.recipe b/libToken/x64/Debug/libToken.dll.recipe
deleted file mode 100644
index 65d773a..0000000
--- a/libToken/x64/Debug/libToken.dll.recipe
+++ /dev/null
@@ -1,11 +0,0 @@
-锘
-
-
-
- D:\Projects\Cpp\WsNovelParser\x64\Debug\libToken.dll
-
-
-
-
-
-
\ No newline at end of file
diff --git a/libToken/x64/Debug/libToken.log b/libToken/x64/Debug/libToken.log
deleted file mode 100644
index b9475cb..0000000
--- a/libToken/x64/Debug/libToken.log
+++ /dev/null
@@ -1,4 +0,0 @@
-锘 Reading Qt configuration (C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin/qmake)
- tokens_novel.cpp
- libtoken.cpp
- libToken.vcxproj -> D:\Projects\Cpp\WsNovelParser\x64\Debug\libToken.dll
diff --git a/libToken/x64/Debug/libToken.tlog/CL.14032.write.1.tlog b/libToken/x64/Debug/libToken.tlog/CL.14032.write.1.tlog
deleted file mode 100644
index be3c398..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/CL.14032.write.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/CL.command.1.tlog b/libToken/x64/Debug/libToken.tlog/CL.command.1.tlog
deleted file mode 100644
index 732f91b..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/CL.command.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/CL.read.1.tlog b/libToken/x64/Debug/libToken.tlog/CL.read.1.tlog
deleted file mode 100644
index 9c48903..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/CL.read.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/Cl.items.tlog b/libToken/x64/Debug/libToken.tlog/Cl.items.tlog
deleted file mode 100644
index 86914a1..0000000
--- a/libToken/x64/Debug/libToken.tlog/Cl.items.tlog
+++ /dev/null
@@ -1,2 +0,0 @@
-D:\Projects\Cpp\WsNovelParser\libToken\tokens_novel.cpp;D:\Projects\Cpp\WsNovelParser\libToken\x64\Debug\tokens_novel.obj
-D:\Projects\Cpp\WsNovelParser\libToken\libtoken.cpp;D:\Projects\Cpp\WsNovelParser\libToken\x64\Debug\libtoken.obj
diff --git a/libToken/x64/Debug/libToken.tlog/libToken.lastbuildstate b/libToken/x64/Debug/libToken.tlog/libToken.lastbuildstate
deleted file mode 100644
index 74c2386..0000000
--- a/libToken/x64/Debug/libToken.tlog/libToken.lastbuildstate
+++ /dev/null
@@ -1,2 +0,0 @@
-PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.38.33130:TargetPlatformVersion=10.0.22621.0:
-Debug|x64|D:\Projects\Cpp\WsNovelParser\|
diff --git a/libToken/x64/Debug/libToken.tlog/link.command.1.tlog b/libToken/x64/Debug/libToken.tlog/link.command.1.tlog
deleted file mode 100644
index 8237426..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/link.command.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/link.read.1.tlog b/libToken/x64/Debug/libToken.tlog/link.read.1.tlog
deleted file mode 100644
index b6597e3..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/link.read.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/link.write.1.tlog b/libToken/x64/Debug/libToken.tlog/link.write.1.tlog
deleted file mode 100644
index ae82aa0..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/link.write.1.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.tlog/link.write.2u.tlog b/libToken/x64/Debug/libToken.tlog/link.write.2u.tlog
deleted file mode 100644
index 2f38708..0000000
Binary files a/libToken/x64/Debug/libToken.tlog/link.write.2u.tlog and /dev/null differ
diff --git a/libToken/x64/Debug/libToken.vcxproj.FileListAbsolute.txt b/libToken/x64/Debug/libToken.vcxproj.FileListAbsolute.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/libToken/x64/Debug/libtoken.obj b/libToken/x64/Debug/libtoken.obj
deleted file mode 100644
index 9f969e1..0000000
Binary files a/libToken/x64/Debug/libtoken.obj and /dev/null differ
diff --git a/libToken/x64/Debug/qmake/qtvars_x64_Debug.props b/libToken/x64/Debug/qmake/qtvars_x64_Debug.props
deleted file mode 100644
index 194ad52..0000000
--- a/libToken/x64/Debug/qmake/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libToken/x64/Debug/qmake/temp/.qmake.stash b/libToken/x64/Debug/qmake/temp/.qmake.stash
deleted file mode 100644
index 7b44b86..0000000
--- a/libToken/x64/Debug/qmake/temp/.qmake.stash
+++ /dev/null
@@ -1,26 +0,0 @@
-QMAKE_CXX.QT_COMPILER_STDCXX = 199711L
-QMAKE_CXX.QMAKE_MSC_VER = 1938
-QMAKE_CXX.QMAKE_MSC_FULL_VER = 193833130
-QMAKE_CXX.COMPILER_MACROS = \
- QT_COMPILER_STDCXX \
- QMAKE_MSC_VER \
- QMAKE_MSC_FULL_VER
-QMAKE_CXX.INCDIRS = \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\include" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\include" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\Include\\um"
-QMAKE_CXX.LIBDIRS = \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.38.33130\\atlmfc\\lib\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\lib\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\ucrt\\x64" \
- "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\VS\\UnitTest\\lib" \
- "C:\\Program Files (x86)\\Windows Kits\\10\\lib\\10.0.22621.0\\um\\x64" \
- "C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8.1\\lib\\um\\x64"
diff --git a/libToken/x64/Debug/qmake/temp/moc_predefs.h.cbt b/libToken/x64/Debug/qmake/temp/moc_predefs.h.cbt
deleted file mode 100644
index 693383c..0000000
--- a/libToken/x64/Debug/qmake/temp/moc_predefs.h.cbt
+++ /dev/null
@@ -1 +0,0 @@
-This is a dummy file needed to create ./moc_predefs.h
diff --git a/libToken/x64/Debug/qmake/temp/props.txt b/libToken/x64/Debug/qmake/temp/props.txt
deleted file mode 100644
index 927788a..0000000
--- a/libToken/x64/Debug/qmake/temp/props.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-QT_SYSROOT:
-QT_INSTALL_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_ARCHDATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_INSTALL_DOCS:C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-QT_INSTALL_HEADERS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-QT_INSTALL_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QT_INSTALL_LIBEXECS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_INSTALL_TESTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-QT_INSTALL_PLUGINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-QT_INSTALL_IMPORTS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-QT_INSTALL_QML:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-QT_INSTALL_TRANSLATIONS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-QT_INSTALL_CONFIGURATION:
-QT_INSTALL_EXAMPLES:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_INSTALL_DEMOS:C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-QT_HOST_PREFIX:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_DATA:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-QT_HOST_BINS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-QT_HOST_LIBS:C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-QMAKE_SPEC:win32-msvc
-QMAKE_XSPEC:win32-msvc
-QMAKE_VERSION:3.1
-QT_VERSION:5.12.11
diff --git a/libToken/x64/Debug/qmake/temp/qtvars.log b/libToken/x64/Debug/qmake/temp/qtvars.log
deleted file mode 100644
index 9f1fd95..0000000
--- a/libToken/x64/Debug/qmake/temp/qtvars.log
+++ /dev/null
@@ -1 +0,0 @@
-Info: creating stash file C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx\.qmake.stash
diff --git a/libToken/x64/Debug/qmake/temp/qtvars.pro b/libToken/x64/Debug/qmake/temp/qtvars.pro
deleted file mode 100644
index 35a36b7..0000000
--- a/libToken/x64/Debug/qmake/temp/qtvars.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-CONFIG += no_fixpath
-QT += core
diff --git a/libToken/x64/Debug/qmake/temp/qtvars.vcxproj b/libToken/x64/Debug/qmake/temp/qtvars.vcxproj
deleted file mode 100644
index 359d6dd..0000000
--- a/libToken/x64/Debug/qmake/temp/qtvars.vcxproj
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
- Debug
- x64
-
-
-
-
- qtvars
- Qt4VSv1.0
-
-
-
- v142
- .\
- false
- NotSet
- Application
- qtvars
-
-
-
-
-
-
-
-
- .\
- qtvars
- true
-
-
-
- C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc;%(AdditionalIncludeDirectories)
- -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus %(AdditionalOptions)
- .\
- false
- ProgramDatabase
- Sync
- .\
- Disabled
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;%(PreprocessorDefinitions)
- false
- MultiThreadedDebugDLL
- true
- true
- TurnOffAllWarnings
-
-
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib;%(AdditionalDependencies)
- C:\openssl\lib;C:\Utils\my_sql\mysql-5.6.11-winx64\lib;C:\Utils\postgresql\pgsql\lib;%(AdditionalLibraryDirectories)
- "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" %(AdditionalOptions)
- true
- true
- true
- $(OutDir)\qtvars.exe
- true
- Windows
- true
-
-
- Unsigned
- None
- 0
-
-
- _WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB;_DEBUG;%(PreprocessorDefinitions)
-
-
-
-
- Document
- C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp;%(AdditionalInputs)
- cl -BxC:\Qt\Qt5.12.11\5.12.11\msvc2017_64\bin\qmake.exe -nologo -Zc:wchar_t -FS -Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus -Zi -MDd -W0 -E C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\features\data\dummy.cpp 2>NUL >moc_predefs.h
- Generate moc_predefs.h
- moc_predefs.h;%(Outputs)
-
-
-
-
-
\ No newline at end of file
diff --git a/libToken/x64/Debug/qmake/temp/qtvars.vcxproj.filters b/libToken/x64/Debug/qmake/temp/qtvars.vcxproj.filters
deleted file mode 100644
index a5e61b7..0000000
--- a/libToken/x64/Debug/qmake/temp/qtvars.vcxproj.filters
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}
- cpp;c;cxx;moc;h;def;odl;idl;res;
-
-
-
-
- Generated Files
-
-
-
\ No newline at end of file
diff --git a/libToken/x64/Debug/qmake/temp/qtvars_x64_Debug.props b/libToken/x64/Debug/qmake/temp/qtvars_x64_Debug.props
deleted file mode 100644
index 194ad52..0000000
--- a/libToken/x64/Debug/qmake/temp/qtvars_x64_Debug.props
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-_WINDOWS;UNICODE;_UNICODE;WIN32;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;QT_GUI_LIB;QT_CORE_LIB
-C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtGui;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtANGLE;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\include\QtCore;C:\Users\WS\AppData\Local\Temp\sgfou5d2.4vx;/include;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\mkspecs\win32-msvc
-
-MultiThreadedDebugDLL
--Zc:rvalueCast -Zc:inline -Zc:strictStrings -Zc:throwingNew -Zc:referenceBinding -Zc:__cplusplus
-C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Guid.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\Qt5Cored.lib;C:\Qt\Qt5.12.11\5.12.11\msvc2017_64\lib\qtmaind.lib;shell32.lib
-"/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'"
-
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/Docs/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/include
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/tests
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/plugins
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/imports
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/qml
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/translations
-
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/Examples/Qt-5.12.11
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/bin
-C:/Qt/Qt5.12.11/5.12.11/msvc2017_64/lib
-win32-msvc
-win32-msvc
-3.1
-5.12.11
-$(Qt_INCLUDEPATH_);
- 5.12.11_msvc2017_64
- core
- bin
- bin
-
-
- DEFINES=/Project/ItemDefinitionGroup/ClCompile/PreprocessorDefinitions;INCLUDEPATH=/Project/ItemDefinitionGroup/ClCompile/AdditionalIncludeDirectories;STDCPP=/Project/ItemDefinitionGroup/ClCompile/LanguageStandard;RUNTIME=/Project/ItemDefinitionGroup/ClCompile/RuntimeLibrary;CL_OPTIONS=/Project/ItemDefinitionGroup/ClCompile/AdditionalOptions;LIBS=/Project/ItemDefinitionGroup/Link/AdditionalDependencies;LINK_OPTIONS=/Project/ItemDefinitionGroup/Link/AdditionalOptions
-
- debug
- 5.12.11
- 5
- 12
- 11
-
-
diff --git a/libToken/x64/Debug/qt.natvis b/libToken/x64/Debug/qt.natvis
deleted file mode 100644
index 7d18567..0000000
--- a/libToken/x64/Debug/qt.natvis
+++ /dev/null
@@ -1,814 +0,0 @@
-
-
-
-
-
-
- {{{data1,Xb}-{data2,Xb}-{data3,Xb}-{(data4[0]),nvoXb}{(data4[1]),nvoXb}-{(data4[2]),nvoXb}{(data4[3]),nvoXb}{(data4[4]),nvoXb}{(data4[5]),nvoXb}{(data4[6]),nvoXb}{(data4[7]),nvoXb}}}
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {x1}, y = {y1}, width = {x2 - x1 + 1}, height = {y2 - y1 + 1} }}
-
- - x1
- - y1
- - x2 - x1 + 1
- - y2 - y1 + 1
-
-
-
-
- {{ x = {xp}, y = {yp}, width = {w}, height = {h} }}
-
- - xp
- - yp
- - w
- - h
-
-
-
-
-
- {{ width = {wd}, height = {ht} }}
-
- - wd
- - ht
-
-
-
-
-
- {{ start point = {pt1}, end point = {pt2} }}
-
-
- {pt1}
-
- pt1
-
-
-
- {pt2}
-
- pt2
-
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- (QPoint*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ size = {d->size} }}
-
- -
- d->size > 0
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).xp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).xp)
- && ((((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[0]).yp
- == (((QPointF*)((reinterpret_cast<char*>(d)) + d->offset)[d->size - 1]).yp)
-
- - d->ref.atomic._q_value
-
- d->size
- (QPointF*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
- {{ x = {xp}, y = {yp} }}
-
- - xp
- - yp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp} }}
-
- - xp
- - yp
- - zp
-
-
-
-
- {{ x = {xp}, y = {yp}, z = {zp}, w = {wp} }}
-
- - xp
- - yp
- - zp
- - wp
-
-
-
-
-
- {{ m11 = {_m11}, m12 = {_m12}, m21 = {_m21}, m22 = {_m22}, ... }}
-
-
- - _m11
- - _m12
- - _m21
- - _m22
- - _dx
- - _dy
-
-
-
-
-
- {{ m11 = {m[0][0]}, m12 = {m[1][0]}, m13 = {m[2][0]}, m14 = {m[3][0]}, ... }}
-
-
- - m[0][0]
- - m[1][0]
- - m[2][0]
- - m[3][0]
- - m[0][1]
- - m[1][1]
- - m[2][1]
- - m[3][1]
- - m[0][2]
- - m[1][2]
- - m[2][2]
- - m[3][2]
- - m[0][3]
- - m[1][3]
- - m[2][3]
- - m[3][3]
-
-
-
-
-
- {{ horizontal = {static_cast<Policy>(bits.horPolicy)}, vertical = {static_cast<Policy>(bits.verPolicy)}, type = {ControlType(1 << bits.ctype)} }}
-
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.verPolicy)}
-
-
- QSizePolicy::Policy::{static_cast<Policy>(bits.horPolicy)}
-
-
- QSizePolicy::ControlType::{ControlType(1 << bits.ctype)}
-
-
-
- Qt::Vertical (2)
-
-
- Qt::Horizontal (1)
-
-
- - static_cast<int>(bits.verStretch)
- - static_cast<int>(bits.horStretch)
- - bits.hfw == 1
- - bits.wfh == 1
-
-
-
-
- {ucs,c}
- ucs,c
-
- - ucs > 0xff ? '\0' : char(ucs),c
- - ucs,c
-
-
-
-
- {((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub}
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),sub
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<unsigned short*>(d)) + d->offset / 2),c
-
-
-
-
-
-
- {m_string,[m_size]} u""
- {offset() + m_position,[m_size]}
-
- - m_position
- - m_size
-
- m_size
- offset()+m_position
-
-
-
-
-
- {m_data,[m_size]}
- m_data,[m_size]
-
- - m_size
-
- m_size
- m_data
-
-
-
-
-
- {((reinterpret_cast<char*>(d)) + d->offset),sb}
- ((reinterpret_cast<char*>(d)) + d->offset),sb
-
- - d->size
- - d->ref.atomic._q_value
-
- d->size
- ((reinterpret_cast<char*>(d)) + d->offset),c
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {scheme()}://{host()}{path()}
- {path()}
-
- - scheme()
- - username()
- - password()
- - host()
- - path()
- - query()
- - fragment()
-
-
-
-
- {{ size = {(d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)} }}
-
- - d.d->ref.atomic._q_value
-
- (d.d->size << 3) - *((reinterpret_cast<char*>(d.d)) + d.d->offset)
-
- (*(reinterpret_cast<const unsigned char*>((reinterpret_cast<char*>(d.d)) + d.d->offset) + 1
- + ($i >> 3)) & (1 << ($i & 7))) != 0
-
-
-
-
-
-
-
- {{ size = {s} }}
-
- - a
-
- s
- ptr
-
-
-
-
-
- {{ julian day = {jd} }}
-
-
-
-
- {{ millisecond = {mds} }}
- {{ milliseconds = {mds} }}
-
- - mds / 3600000, d
- - mds / 3600000, d
- - (mds % 3600000) / 60000, d
- - (mds % 3600000) / 60000, d
- - (mds / 1000) % 60, d
- - (mds / 1000) % 60, d
- - mds % 1000, d
- - mds % 1000, d
-
-
-
-
- {d.pattern}
-
-
-
-
- - ref._q_value
-
-
-
-
- strong reference to shared pointer of type {"$T1"}
-
- - value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- pointer to implicit shared object of type {"$T1"}
-
- d
-
-
-
-
- pointer to explicit shared object of type {"$T1"}
-
- d
-
-
-
-
- guarded pointer to subclass of QObject of type {"$T1"}
-
- - wp.d == 0 || wp.d->strongref._q_value == 0 || wp.value == 0
-
-
-
-
- weak reference to shared pointer of type {"$T1"}
-
- - d == 0 || d->strongref._q_value == 0 || value == 0
- - d->weakref._q_value
- - d->strongref._q_value
-
-
-
-
- scoped pointer to a dynamically allocated object of type {"$T1"}
-
- - !d
-
-
-
-
- scoped pointer to dynamically allocated array of objects of type {"$T1"}
-
- - !d
-
-
-
-
- ({first}, {second})
-
- - first
- - second
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- ($T1*)((reinterpret_cast<char*>(d)) + d->offset)
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
- *reinterpret_cast<$T1*>((sizeof($T1) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<$T1*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QString*>((sizeof(QString) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QString*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->end - d->begin} }}
-
- - d->ref.atomic._q_value
-
- d->end - d->begin
-
- *reinterpret_cast<QVariant*>((sizeof(QVariant) > sizeof(void*))
- ? reinterpret_cast<Node*>(d->array + d->begin + $i)->v
- : reinterpret_cast<QVariant*>(d->array + d->begin + $i))
-
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->n
- n
- (*(QLinkedListNode<$T1>*)this).t
-
-
-
-
-
- ({key}, {value})
-
- - key
- - value
-
-
-
-
-
- {{ size = {d->size} }}
-
- - d->ref.atomic._q_value
-
- d->size
- d->header.left
- left
- right
- *((QMapNode<$T1,$T2>*)this)
-
-
-
-
-
- (empty)
- ({key}, {value})
-
- - key
- - value
- - next
-
-
-
-
-
- {{ size = {d->size} }}
-
-
- d->numBuckets
- reinterpret_cast<Node **>(d->buckets)
-
-
-
-
-
-
- d->size
-
-
- node = *(bucket++)
- --n
-
-
- keyValuePair = reinterpret_cast<Node *>(node)
- - keyValuePair->value
- node = node->next
-
-
-
-
-
-
-
- (empty)
- ({key})
-
- - key
-
-
-
-
- {{ size = {q_hash.d->size} }}
-
- q_hash
-
-
-
-
- ({*keyPtr}, {*t})
-
- - *keyPtr
- - *t
-
-
-
-
- {{ size = {hash.d->size} }}
-
- - mx
- - total
- - hash.d->ref.atomic._q_value
-
- hash.d->size
- f
- n
- *((Node*)this)
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ row count = {(*d_ptr.d).rows()}, column count = {(*d_ptr.d).columns()} }}
-
- - d_ptr.d,!
- - (*d_ptr.d).rows()
- - (*d_ptr.d).columns()
-
-
-
-
-
-
- Invalid
- {d.data.b}
- {d.data.i}
- {d.data.u}
- {d.data.ll}
- {d.data.ull}
- {d.data.d}
- {d.data.c}
-
- {*((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- DateTime
- Url
- Locale
-
- {*((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
-
- {*((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- RegExp
- RegularExpression
-
- {*((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))}
-
- EasingCurve
- Uuid
- ModelIndex
- LastCoreType
- Font
- Pixmap
- Brush
- Color
- Palette
- Image
- Polygon
- Region
- Bitmap
- Cursor
- KeySequence
- Pen
- TextLength
- TextFormat
- Matrix
- Transform
- Matrix4x4
- Vector2D
- Vector3D
- Vector4D
- Quaternion
- PolygonF
- Icon
- LastGuiType
- SizePolicy
- UserType
- LastType
-
-
-
-
-
- d.data.c
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
-
- *((QMap<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QList<QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QString*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QStringList*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QByteArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QBitArray*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QDate*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QTime*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRect*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QRectF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSize*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QSizeF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLine*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QLineF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPoint*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QPointF*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
- *((QHash<QString,QVariant>*)(d.is_shared ? d.data.shared->ptr
- : reinterpret_cast<const void *>(&d.data.ptr)))
-
-
-
-
-
-
-
diff --git a/libToken/x64/Debug/tokens_novel.obj b/libToken/x64/Debug/tokens_novel.obj
deleted file mode 100644
index 797c22f..0000000
Binary files a/libToken/x64/Debug/tokens_novel.obj and /dev/null differ
diff --git a/libToken/x64/Debug/vc143.pdb b/libToken/x64/Debug/vc143.pdb
deleted file mode 100644
index 0fc1aaf..0000000
Binary files a/libToken/x64/Debug/vc143.pdb and /dev/null differ
diff --git a/x64/Debug/WsNovelParser.exe b/x64/Debug/WsNovelParser.exe
deleted file mode 100644
index bf1656c..0000000
Binary files a/x64/Debug/WsNovelParser.exe and /dev/null differ
diff --git a/x64/Debug/WsNovelParser.ilk b/x64/Debug/WsNovelParser.ilk
deleted file mode 100644
index 32bf9f1..0000000
Binary files a/x64/Debug/WsNovelParser.ilk and /dev/null differ
diff --git a/x64/Debug/WsNovelParser.pdb b/x64/Debug/WsNovelParser.pdb
deleted file mode 100644
index 8998e39..0000000
Binary files a/x64/Debug/WsNovelParser.pdb and /dev/null differ
diff --git a/x64/Debug/libParse.dll b/x64/Debug/libParse.dll
deleted file mode 100644
index 702e658..0000000
Binary files a/x64/Debug/libParse.dll and /dev/null differ
diff --git a/x64/Debug/libParse.exp b/x64/Debug/libParse.exp
deleted file mode 100644
index e9f2b1d..0000000
Binary files a/x64/Debug/libParse.exp and /dev/null differ
diff --git a/x64/Debug/libParse.ilk b/x64/Debug/libParse.ilk
deleted file mode 100644
index 1fe687e..0000000
Binary files a/x64/Debug/libParse.ilk and /dev/null differ
diff --git a/x64/Debug/libParse.lib b/x64/Debug/libParse.lib
deleted file mode 100644
index 4a2de8a..0000000
Binary files a/x64/Debug/libParse.lib and /dev/null differ
diff --git a/x64/Debug/libParse.pdb b/x64/Debug/libParse.pdb
deleted file mode 100644
index 3da7426..0000000
Binary files a/x64/Debug/libParse.pdb and /dev/null differ
diff --git a/x64/Debug/libSyntax.dll b/x64/Debug/libSyntax.dll
deleted file mode 100644
index 6a0c4c1..0000000
Binary files a/x64/Debug/libSyntax.dll and /dev/null differ
diff --git a/x64/Debug/libSyntax.exp b/x64/Debug/libSyntax.exp
deleted file mode 100644
index edb8b8e..0000000
Binary files a/x64/Debug/libSyntax.exp and /dev/null differ
diff --git a/x64/Debug/libSyntax.ilk b/x64/Debug/libSyntax.ilk
deleted file mode 100644
index e230c67..0000000
Binary files a/x64/Debug/libSyntax.ilk and /dev/null differ
diff --git a/x64/Debug/libSyntax.lib b/x64/Debug/libSyntax.lib
deleted file mode 100644
index 3cd1edb..0000000
Binary files a/x64/Debug/libSyntax.lib and /dev/null differ
diff --git a/x64/Debug/libSyntax.pdb b/x64/Debug/libSyntax.pdb
deleted file mode 100644
index 8ce1ca8..0000000
Binary files a/x64/Debug/libSyntax.pdb and /dev/null differ
diff --git a/x64/Debug/libToken.dll b/x64/Debug/libToken.dll
deleted file mode 100644
index 6a090e4..0000000
Binary files a/x64/Debug/libToken.dll and /dev/null differ
diff --git a/x64/Debug/libToken.exp b/x64/Debug/libToken.exp
deleted file mode 100644
index 97fbaf9..0000000
Binary files a/x64/Debug/libToken.exp and /dev/null differ
diff --git a/x64/Debug/libToken.ilk b/x64/Debug/libToken.ilk
deleted file mode 100644
index 70ed084..0000000
Binary files a/x64/Debug/libToken.ilk and /dev/null differ
diff --git a/x64/Debug/libToken.lib b/x64/Debug/libToken.lib
deleted file mode 100644
index 64635eb..0000000
Binary files a/x64/Debug/libToken.lib and /dev/null differ
diff --git a/x64/Debug/libToken.pdb b/x64/Debug/libToken.pdb
deleted file mode 100644
index 338eb53..0000000
Binary files a/x64/Debug/libToken.pdb and /dev/null differ
diff --git a/x64/test_file/description.txt b/x64/test_file/description.txt
deleted file mode 100644
index 46625a9..0000000
--- a/x64/test_file/description.txt
+++ /dev/null
@@ -1,32 +0,0 @@
-{鏁呬簨 1 鏁呬簨鍚嶇О
- 鏁呬簨绠浠
- {鎯呰妭 鎯呰妭鍚嶇О
- 鎯呰妭鍐呭
- }
- {鎯呰妭 鎯呰妭鍚嶇О2
- 鎯呰妭鍐呭x
- }
- }
-{鏁呬簨 2 鏁呬簨2鍚嶇О
- 鏁呬簨2 鐨勭畝浠
- {鎯呰妭 鎯呰妭鍚嶇Оx
- 鎯呰妭绠浠
- }
- {@鎯呰妭 鎯呰妭鍚嶇О2&鏁呬簨鍚嶇О
- 娣诲姞绠浠
- }
- }
-
-{鍒嗗嵎 鍒嗗嵎鍚嶇О
- 鍒嗗嵎鍐呭
- {@鎯呰妭 鎯呰妭鍚嶇О&鏁呬簨鍚嶇О
- 琛ュ厖鍐呭
- }
-
- {绔犺妭 绔犺妭鍚嶇О
- 绔犺妭鍐呭
- {@鎯呰妭 鎯呰妭鍚嶇О&鏁呬簨鍚嶇О
- 琛ュ厖鍐呭
- }
- }
- }