fix include pathname

This commit is contained in:
2020-01-23 22:06:04 +08:00
parent e12b8a9e5c
commit d33bcd601c
12 changed files with 25 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
#include<hgl/thread/Semaphore.h> #include<hgl/thread/Semaphore.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
namespace hgl namespace hgl
{ {

View File

@@ -1,5 +1,5 @@
#include<hgl/filesystem/EnumFile.h> #include<hgl/filesystem/EnumFile.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<unistd.h> #include<unistd.h>
#include<stdlib.h> #include<stdlib.h>
#include<stdio.h> #include<stdio.h>

View File

@@ -1,6 +1,6 @@
#include<hgl/platform/ExternalModule.h> #include<hgl/platform/ExternalModule.h>
#include<hgl/platform/Platform.h> #include<hgl/platform/Platform.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<dlfcn.h> #include<dlfcn.h>

View File

@@ -1,5 +1,5 @@
#include<hgl/proc/Fifo.h> #include<hgl/proc/Fifo.h>
#include<hgl/Str.h> #include<hgl/type/StrChar.h>
#include<sys/stat.h> #include<sys/stat.h>
namespace hgl namespace hgl

View File

@@ -1,5 +1,5 @@
#include<hgl/filesystem/FileSystem.h> #include<hgl/filesystem/FileSystem.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<hgl/io/FileInputStream.h> #include<hgl/io/FileInputStream.h>
#include<hgl/io/FileOutputStream.h> #include<hgl/io/FileOutputStream.h>

View File

@@ -1,5 +1,5 @@
#include<hgl/io/FileAccess.h> #include<hgl/io/FileAccess.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<unistd.h> #include<unistd.h>
#include<stdlib.h> #include<stdlib.h>
#include<fcntl.h> #include<fcntl.h>

View File

@@ -1,4 +1,4 @@
#include<hgl/Logger.h> #include<hgl/log/Logger.h>
#include<hgl/CodePage.h> #include<hgl/CodePage.h>
#include<hgl/thread/ThreadMutex.h> #include<hgl/thread/ThreadMutex.h>
#include<unistd.h> #include<unistd.h>

View File

@@ -1,5 +1,5 @@
#include<hgl/thread/Semaphore.h> #include<hgl/thread/Semaphore.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<pthread.h> #include<pthread.h>
#include<semaphore.h> #include<semaphore.h>

View File

@@ -1,9 +1,9 @@
#include<hgl/thread/Thread.h> #include<hgl/thread/Thread.h>
#include<hgl/thread/CondVar.h> #include<hgl/thread/CondVar.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<signal.h> #include<signal.h>
#include<errno.h> #include<errno.h>
#include<hgl/Str.h> #include<hgl/type/StrChar.h>
namespace hgl namespace hgl
{ {

View File

@@ -91,6 +91,14 @@ namespace hgl
win_name.Length(), win_name.c_str()); win_name.Length(), win_name.c_str());
} }
void XCBWindow::ToMinWindow()
{
}
void XCBWindow::ToMaxWindow()
{
}
bool XCBWindow::MessageProc() bool XCBWindow::MessageProc()
{ {
return(true); return(true);

View File

@@ -13,7 +13,6 @@ namespace hgl
private: private:
bool InitConnection(); bool InitConnection();
VkSurfaceKHR CreateSurface(VkInstance) override;
public: public:
@@ -32,6 +31,10 @@ namespace hgl
void Show()override{} void Show()override{}
void Hide()override{} void Hide()override{}
void ToMinWindow() override;
void ToMaxWindow() override;
bool MessageProc() override; bool MessageProc() override;
bool WaitMessage() override; bool WaitMessage() override;
};//class XCBWindow:public Window };//class XCBWindow:public Window

View File

@@ -1,6 +1,6 @@
#include<hgl/platform/SystemInfo.h> #include<hgl/platform/SystemInfo.h>
//#include<hgl/platform/ConsoleSystemInitInfo.h> //#include<hgl/platform/ConsoleSystemInitInfo.h>
#include<hgl/LogInfo.h> #include<hgl/log/LogInfo.h>
#include<hgl/PlugIn.h> #include<hgl/PlugIn.h>
#include<hgl/filesystem/FileSystem.h> #include<hgl/filesystem/FileSystem.h>
#include<wchar.h> #include<wchar.h>