This commit is contained in:
parent
be0914c9c1
commit
4a23bc826d
|
@ -114,7 +114,7 @@
|
|||
<ClCompile Include="dag_present.cpp" />
|
||||
<ClCompile Include="data_type.cpp" />
|
||||
<ClCompile Include="storyline_compare.cpp" />
|
||||
<ClCompile Include="view_present.cpp" />
|
||||
<ClCompile Include="cmp_present.cpp" />
|
||||
<ClCompile Include="xast_parse.cpp" />
|
||||
<QtRcc Include="storypresent.qrc" />
|
||||
<QtMoc Include="storypresent.h" />
|
||||
|
@ -126,7 +126,7 @@
|
|||
<QtMoc Include="dag_present.h" />
|
||||
<ClInclude Include="data_type.h" />
|
||||
<ClInclude Include="storyline_compare.h" />
|
||||
<ClInclude Include="view_present.h" />
|
||||
<ClInclude Include="cmp_present.h" />
|
||||
<ClInclude Include="xast_parse.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
<ClCompile Include="dag_present.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="view_present.cpp">
|
||||
<ClCompile Include="cmp_present.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="storyline_compare.cpp">
|
||||
|
@ -66,7 +66,7 @@
|
|||
<ClInclude Include="data_type.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="view_present.h">
|
||||
<ClInclude Include="cmp_present.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="storyline_compare.h">
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "view_present.h"
|
||||
#include "cmp_present.h"
|
||||
#include <QVBoxLayout>
|
||||
#include <QHBoxLayout>
|
||||
#include <QSplitter>
|
|
@ -2,7 +2,7 @@
|
|||
#include "dag_layout.h"
|
||||
#include "xast_parse.h"
|
||||
#include "dag_present.h"
|
||||
#include "view_present.h"
|
||||
#include "cmp_present.h"
|
||||
#include <argsparser.h>
|
||||
#include <QDebug>
|
||||
#include <QMessageBox>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <QtWidgets/QMainWindow>
|
||||
#include "dag_present.h"
|
||||
#include "xast_parse.h"
|
||||
|
||||
class StoryPresent : public QMainWindow {
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in New Issue