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
73fb4abb
Commit
73fb4abb
authored
Aug 08, 2010
by
Sebastian Eichelbaum
Browse files
[CHANGE] - renamed export definition files to better match our naming scheme (no underscores).
parent
caa9977d
Changes
118
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
22 additions
and
22 deletions
+22
-22
src/common/WAssert.h
src/common/WAssert.h
+1
-1
src/common/WColor.h
src/common/WColor.h
+1
-1
src/common/WCondition.h
src/common/WCondition.h
+1
-1
src/common/WConditionOneShot.h
src/common/WConditionOneShot.h
+1
-1
src/common/WConditionSet.h
src/common/WConditionSet.h
+1
-1
src/common/WException.h
src/common/WException.h
+1
-1
src/common/WExportCommon.h
src/common/WExportCommon.h
+3
-3
src/common/WFlagForwarder.h
src/common/WFlagForwarder.h
+1
-1
src/common/WHistogram.h
src/common/WHistogram.h
+1
-1
src/common/WItemSelection.h
src/common/WItemSelection.h
+1
-1
src/common/WItemSelector.h
src/common/WItemSelector.h
+1
-1
src/common/WLogEntry.h
src/common/WLogEntry.h
+1
-1
src/common/WLogger.h
src/common/WLogger.h
+1
-1
src/common/WPathHelper.h
src/common/WPathHelper.h
+1
-1
src/common/WPreferences.h
src/common/WPreferences.h
+1
-1
src/common/WProgress.h
src/common/WProgress.h
+1
-1
src/common/WProgressCombiner.h
src/common/WProgressCombiner.h
+1
-1
src/common/WProjectFileIO.h
src/common/WProjectFileIO.h
+1
-1
src/common/WProperties.h
src/common/WProperties.h
+1
-1
src/common/WPropertyBase.h
src/common/WPropertyBase.h
+1
-1
No files found.
src/common/WAssert.h
View file @
73fb4abb
...
...
@@ -28,7 +28,7 @@
#include <string>
#include "WException.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Implements assertion logic.
...
...
src/common/WColor.h
View file @
73fb4abb
...
...
@@ -31,7 +31,7 @@
#include <string>
#include <vector>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Represents a RGBA Color
...
...
src/common/WCondition.h
View file @
73fb4abb
...
...
@@ -29,7 +29,7 @@
#include <boost/signals2/signal.hpp>
#include <boost/thread.hpp>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Class to encapsulate boost::condition_variable_any. You may use it to efficiently wait for events (a condition comes true). It
...
...
src/common/WConditionOneShot.h
View file @
73fb4abb
...
...
@@ -28,7 +28,7 @@
#include <boost/thread.hpp>
#include "WCondition.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Implements a WCondition, but can be fired only ONCE. This is useful if you want to have a thread waiting for a condition but
...
...
src/common/WConditionSet.h
View file @
73fb4abb
...
...
@@ -32,7 +32,7 @@
#include <boost/thread.hpp>
#include "WCondition.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Class allowing multiple conditions to be used for one waiting cycle. Since wait() can not be used for waiting on multiple
...
...
src/common/WException.h
View file @
73fb4abb
...
...
@@ -31,7 +31,7 @@
#include <sstream>
#include "WTerminalColor.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Basic exception handler.
...
...
src/common/WExport
_
Common
DLL
.h
→
src/common/WExportCommon.h
View file @
73fb4abb
...
...
@@ -22,8 +22,8 @@
//
//---------------------------------------------------------------------------
#ifndef WEXPORT
_
COMMON
DLL
_H
#define WEXPORT
_
COMMON
DLL
_H
#ifndef WEXPORTCOMMON_H
#define WEXPORTCOMMON_H
#ifdef _MSC_VER
...
...
@@ -41,5 +41,5 @@
#endif // _MSC_VER
#endif // WEXPORT
_
COMMON
DLL
_H
#endif // WEXPORTCOMMON_H
src/common/WFlagForwarder.h
View file @
73fb4abb
...
...
@@ -29,7 +29,7 @@
#include <boost/signals2/signal.hpp>
#include "WFlag.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* This class helps especially container module programmers to easily synchronize the value of one flag with several other
...
...
src/common/WHistogram.h
View file @
73fb4abb
...
...
@@ -27,7 +27,7 @@
#include <utility>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Container which associate values with (uniform width) bins (aka intervals or buckets). This class implements the abstract interface and
...
...
src/common/WItemSelection.h
View file @
73fb4abb
...
...
@@ -33,7 +33,7 @@
#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
class
WItemSelector
;
...
...
src/common/WItemSelector.h
View file @
73fb4abb
...
...
@@ -33,7 +33,7 @@
#include <boost/shared_ptr.hpp>
#include "WItemSelection.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* This class represents a subset of a WItemSelection. It is a class for managing selections. The class is kept very restrictive. The selection
...
...
src/common/WLogEntry.h
View file @
73fb4abb
...
...
@@ -28,7 +28,7 @@
#include <string>
#include "WTerminalColor.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Various log levels, to distinguish output on its level.
...
...
src/common/WLogger.h
View file @
73fb4abb
...
...
@@ -38,7 +38,7 @@
#include "WLogEntry.h"
#include "WStringUtils.h"
#include "WThreadedRunner.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Does actual logging of WLogEntries down to stdout or something similar.
...
...
src/common/WPathHelper.h
View file @
73fb4abb
...
...
@@ -30,7 +30,7 @@
#include <boost/filesystem.hpp>
#include <boost/shared_ptr.hpp>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Singleton class helping to find files and paths. It is a useful to to search for resources and the central place to "hardcode" relative paths.
* It contains global paths only. Modules have their OWN local paths.
...
...
src/common/WPreferences.h
View file @
73fb4abb
...
...
@@ -36,7 +36,7 @@
#include "WProperties.h"
#include "WLogger.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Fetches and caches preferences set in file.
*/
...
...
src/common/WProgress.h
View file @
73fb4abb
...
...
@@ -30,7 +30,7 @@
#include <boost/shared_ptr.hpp>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Class managing progress inside of modules. It interacts with the abstract WGUI class to present those information to the user.
* At the same time, it also is a simple tree structure, allowing the programmer to arrange complex sub progress. This is
...
...
src/common/WProgressCombiner.h
View file @
73fb4abb
...
...
@@ -31,7 +31,7 @@
#include <boost/thread.hpp>
#include "WProgress.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Base class for all kinds of progress combinations. You might want to derive from this class to implement some special progress
...
...
src/common/WProjectFileIO.h
View file @
73fb4abb
...
...
@@ -28,7 +28,7 @@
#include <ostream>
#include <string>
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* A base class for all parts of OpenWalnut which can be serialized to a project file. It is used by WProjectFile to actually parse the file line
* by line. Derive from this class if you write your own parser and use it to fill your internal data structures.
...
...
src/common/WProperties.h
View file @
73fb4abb
...
...
@@ -38,7 +38,7 @@
#include "WPropertyBase.h"
#include "WPropertyTypes.h"
#include "WPropertyVariable.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Class to manage properties of an object and to provide convenience methods for easy access and manipulation. It also allows
...
...
src/common/WPropertyBase.h
View file @
73fb4abb
...
...
@@ -36,7 +36,7 @@
#include "WPropertyTypes.h"
#include "WCondition.h"
#include "WConditionSet.h"
#include "WExport
_
Common
DLL
.h"
#include "WExportCommon.h"
/**
* Abstract base class for all properties. Simply provides name and type information.
...
...
Prev
1
2
3
4
5
6
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