Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenWalnut
OpenWalnut Core
Commits
f6fa3fa1
Commit
f6fa3fa1
authored
Apr 21, 2011
by
Sebastian Eichelbaum
Browse files
[FIX] - now compatible with boost >= 1.46
parent
4141889b
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
80 additions
and
0 deletions
+80
-0
src/common/WIOTools.cpp
src/common/WIOTools.cpp
+4
-0
src/common/WIOTools.h
src/common/WIOTools.h
+4
-0
src/common/WPathHelper.h
src/common/WPathHelper.h
+4
-0
src/common/WPreferences.h
src/common/WPreferences.h
+4
-0
src/common/WPropertyBase.cpp
src/common/WPropertyBase.cpp
+4
-0
src/common/WPropertyTypes.h
src/common/WPropertyTypes.h
+4
-0
src/common/WPropertyVariable.h
src/common/WPropertyVariable.h
+4
-0
src/common/WSharedLib.h
src/common/WSharedLib.h
+4
-0
src/dataHandler/io/WWriter.cpp
src/dataHandler/io/WWriter.cpp
+4
-0
src/dataHandler/io/WWriterDendrogram.cpp
src/dataHandler/io/WWriterDendrogram.cpp
+4
-0
src/dataHandler/io/WWriterDendrogram.h
src/dataHandler/io/WWriterDendrogram.h
+4
-0
src/dataHandler/io/WWriterFiberVTK.cpp
src/dataHandler/io/WWriterFiberVTK.cpp
+4
-0
src/dataHandler/io/WWriterFiberVTK.h
src/dataHandler/io/WWriterFiberVTK.h
+4
-0
src/graphicsEngine/shaders/WGEShader.cpp
src/graphicsEngine/shaders/WGEShader.cpp
+4
-0
src/graphicsEngine/shaders/WGEShader.h
src/graphicsEngine/shaders/WGEShader.h
+4
-0
src/gui/qt4/WQt4Gui.cpp
src/gui/qt4/WQt4Gui.cpp
+4
-0
src/kernel/WKernel.cpp
src/kernel/WKernel.cpp
+4
-0
src/kernel/WModule.h
src/kernel/WModule.h
+4
-0
src/kernel/WModuleLoader.h
src/kernel/WModuleLoader.h
+4
-0
src/kernel/WProjectFile.h
src/kernel/WProjectFile.h
+4
-0
No files found.
src/common/WIOTools.cpp
View file @
f6fa3fa1
...
...
@@ -26,6 +26,10 @@
#include <streambuf>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "exceptions/WFileNotFound.h"
...
...
src/common/WIOTools.h
View file @
f6fa3fa1
...
...
@@ -31,6 +31,10 @@
// #include <cstdio>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "WExportCommon.h"
...
...
src/common/WPathHelper.h
View file @
f6fa3fa1
...
...
@@ -27,6 +27,10 @@
#include <vector>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/common/WPreferences.h
View file @
f6fa3fa1
...
...
@@ -28,6 +28,10 @@
#include <string>
#include <fstream>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
...
...
src/common/WPropertyBase.cpp
View file @
f6fa3fa1
...
...
@@ -25,6 +25,10 @@
#include <list>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "exceptions/WPropertyNameMalformed.h"
...
...
src/common/WPropertyTypes.h
View file @
f6fa3fa1
...
...
@@ -36,6 +36,10 @@
#include <list>
#include <utility>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/lexical_cast.hpp>
...
...
src/common/WPropertyVariable.h
View file @
f6fa3fa1
...
...
@@ -33,6 +33,10 @@
#include <vector>
#include <set>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/thread.hpp>
#include <boost/lexical_cast.hpp>
...
...
src/common/WSharedLib.h
View file @
f6fa3fa1
...
...
@@ -28,6 +28,10 @@
#include <algorithm>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "WExportCommon.h"
...
...
src/dataHandler/io/WWriter.cpp
View file @
f6fa3fa1
...
...
@@ -24,6 +24,10 @@
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "../../common/WIOTools.h"
...
...
src/dataHandler/io/WWriterDendrogram.cpp
View file @
f6fa3fa1
...
...
@@ -25,6 +25,10 @@
#include <fstream>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/dataHandler/io/WWriterDendrogram.h
View file @
f6fa3fa1
...
...
@@ -27,6 +27,10 @@
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/dataHandler/io/WWriterFiberVTK.cpp
View file @
f6fa3fa1
...
...
@@ -25,6 +25,10 @@
#include <fstream>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/dataHandler/io/WWriterFiberVTK.h
View file @
f6fa3fa1
...
...
@@ -27,6 +27,10 @@
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/graphicsEngine/shaders/WGEShader.cpp
View file @
f6fa3fa1
...
...
@@ -28,6 +28,10 @@
#include <ostream>
#include <boost/algorithm/string.hpp>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/tokenizer.hpp>
...
...
src/graphicsEngine/shaders/WGEShader.h
View file @
f6fa3fa1
...
...
@@ -29,6 +29,10 @@
#include <list>
#include <string>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/signals2/signal.hpp>
...
...
src/gui/qt4/WQt4Gui.cpp
View file @
f6fa3fa1
...
...
@@ -27,6 +27,10 @@
#include <string>
#include <vector>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/kernel/WKernel.cpp
View file @
f6fa3fa1
...
...
@@ -35,6 +35,10 @@
#include <string>
#include <vector>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/thread/xtime.hpp>
...
...
src/kernel/WModule.h
View file @
f6fa3fa1
...
...
@@ -30,6 +30,10 @@
#include <typeinfo>
#include <boost/enable_shared_from_this.hpp>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/function.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/kernel/WModuleLoader.h
View file @
f6fa3fa1
...
...
@@ -29,6 +29,10 @@
#include <string>
#include <vector>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
...
...
src/kernel/WProjectFile.h
View file @
f6fa3fa1
...
...
@@ -29,6 +29,10 @@
#include <string>
#include <boost/shared_ptr.hpp>
// Use filesystem version 2 for compatibility with newer boost versions.
#ifndef BOOST_FILESYSTEM_VERSION
#define BOOST_FILESYSTEM_VERSION 2
#endif
#include <boost/filesystem.hpp>
#include "../common/WProjectFileIO.h"
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment