From 4a23bc826dc1d11bcbce080a0f31a1be2b9a4ece Mon Sep 17 00:00:00 2001 From: codeboss <2422523675@qq.com> Date: Fri, 4 Oct 2024 20:12:19 +0800 Subject: [PATCH] 1 --- StoryPresent/StoryPresent.vcxproj | 4 ++-- StoryPresent/StoryPresent.vcxproj.filters | 4 ++-- StoryPresent/{view_present.cpp => cmp_present.cpp} | 2 +- StoryPresent/{view_present.h => cmp_present.h} | 0 StoryPresent/main.cpp | 2 +- StoryPresent/storypresent.h | 2 ++ 6 files changed, 8 insertions(+), 6 deletions(-) rename StoryPresent/{view_present.cpp => cmp_present.cpp} (99%) rename StoryPresent/{view_present.h => cmp_present.h} (100%) diff --git a/StoryPresent/StoryPresent.vcxproj b/StoryPresent/StoryPresent.vcxproj index 24e63fe..12d1c12 100644 --- a/StoryPresent/StoryPresent.vcxproj +++ b/StoryPresent/StoryPresent.vcxproj @@ -114,7 +114,7 @@ - + @@ -126,7 +126,7 @@ - + diff --git a/StoryPresent/StoryPresent.vcxproj.filters b/StoryPresent/StoryPresent.vcxproj.filters index 9464d77..0e1f124 100644 --- a/StoryPresent/StoryPresent.vcxproj.filters +++ b/StoryPresent/StoryPresent.vcxproj.filters @@ -49,7 +49,7 @@ Source Files - + Source Files @@ -66,7 +66,7 @@ Header Files - + Header Files diff --git a/StoryPresent/view_present.cpp b/StoryPresent/cmp_present.cpp similarity index 99% rename from StoryPresent/view_present.cpp rename to StoryPresent/cmp_present.cpp index 18821dd..5cce0f4 100644 --- a/StoryPresent/view_present.cpp +++ b/StoryPresent/cmp_present.cpp @@ -1,4 +1,4 @@ -#include "view_present.h" +#include "cmp_present.h" #include #include #include diff --git a/StoryPresent/view_present.h b/StoryPresent/cmp_present.h similarity index 100% rename from StoryPresent/view_present.h rename to StoryPresent/cmp_present.h diff --git a/StoryPresent/main.cpp b/StoryPresent/main.cpp index 0fa862e..6d9ac08 100644 --- a/StoryPresent/main.cpp +++ b/StoryPresent/main.cpp @@ -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 #include #include diff --git a/StoryPresent/storypresent.h b/StoryPresent/storypresent.h index 09967e4..d23e4d4 100644 --- a/StoryPresent/storypresent.h +++ b/StoryPresent/storypresent.h @@ -1,6 +1,8 @@ #pragma once #include +#include "dag_present.h" +#include "xast_parse.h" class StoryPresent : public QMainWindow { Q_OBJECT