summaryrefslogtreecommitdiff
path: root/library/pch.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
commit4ecfd41e36533d858c98d051ef70cab80e69e972 (patch)
treeca07d8745967d2c6a7123a5d32269cfbfaa7bd6c /library/pch.h
parent2.2 (diff)
downloadFreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.gz
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.bz2
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.zip
2.3
Diffstat (limited to 'library/pch.h')
-rw-r--r--library/pch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/pch.h b/library/pch.h
index 22ed251f..966bc103 100644
--- a/library/pch.h
+++ b/library/pch.h
@@ -33,6 +33,7 @@ do NOT use in release build!
#endif //FFS_LINUX
//other wxWidgets headers
+#include <wx/log.h>
#include <wx/grid.h>
#include <wx/animate.h>
#include <wx/app.h>
@@ -89,6 +90,9 @@ do NOT use in release build!
#include "../shared/tinyxml/tinyxml.h"
#include <sys/stat.h>
+//Boost
+#include <boost/shared_ptr.hpp>
+
#ifdef FFS_WIN
#include <wx/msw/wrapwin.h> //includes "windows.h"
#endif //FFS_WIN
bgstack15