Changeset 196 in pacpusframework
- Timestamp:
- Oct 25, 2013, 11:12:25 AM (11 years ago)
- Location:
- trunk/include/Pacpus/kernel
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentBase.h
r195 r196 27 27 // InputOutputInterface.h must be included, otherwise we could not use addInput, addOutput template methods 28 28 #include <Pacpus/kernel/InputOutputInterface.h> 29 #include <Pacpus/kernel/ pacpus.h>29 #include <Pacpus/kernel/PacpusLibConfig.h> 30 30 #include <Pacpus/kernel/XmlComponentConfig.h> 31 31 -
trunk/include/Pacpus/kernel/ComponentFactoryBase.h
r89 r196 16 16 #define DEF_PACPUS_COMPONENTFACTORYBASE_H 17 17 18 #include <Pacpus/kernel/ pacpus.h>18 #include <Pacpus/kernel/PacpusLibConfig.h> 19 19 20 20 class QString; -
trunk/include/Pacpus/kernel/ConnectionBase.h
r182 r196 2 2 #define CONNECTIONBASE_H 3 3 4 #include <Pacpus/kernel/ pacpus.h>4 #include <Pacpus/kernel/PacpusLibConfig.h> 5 5 6 6 namespace pacpus { … … 14 14 virtual ~ConnectionBase(); 15 15 16 AbstractInterface * 16 AbstractInterface * getInterface() const; 17 17 int getPriority() const; 18 18 bool operator==(ConnectionBase const & c); -
trunk/include/Pacpus/kernel/Log.h
r176 r196 15 15 #define DEF_PACPUS_LOG_H 16 16 17 // Includes, pacpus. 18 #include <Pacpus/kernel/pacpus.h> 17 #include <Pacpus/kernel/PacpusLibConfig.h> 19 18 20 19 namespace pacpus { -
trunk/include/Pacpus/kernel/PacpusEvent.h
r153 r196 2 2 #define PACPUS_EVENT_H 3 3 4 #include <Pacpus/kernel/PacpusLibConfig.h> 5 #include <Pacpus/kernel/road_time.h> 6 4 7 #include <algorithm> 5 #include <Pacpus/kernel/road_time.h>6 #include <Pacpus/kernel/pacpus.h>7 8 #include <QDataStream> 8 9 #include <QEvent> -
trunk/include/Pacpus/kernel/XmlComponentConfig.h
r176 r196 16 16 #define DEF_PACPUS_XMLCOMPONENTCONFIG_H 17 17 18 #include <Pacpus/kernel/ pacpus.h>18 #include <Pacpus/kernel/PacpusLibConfig.h> 19 19 20 20 #include <QDomElement> -
trunk/include/Pacpus/kernel/pacpus.h
r181 r196 23 23 #ifndef PACPUS_PI 24 24 # define PACPUS_PI 3.1415926 25 #endif26 27 /// Export macro for PacpusLib DLL for Windows only28 #ifdef WIN3229 # ifdef PACPUSLIB_EXPORTS30 // make DLL31 # define PACPUSLIB_API __declspec(dllexport)32 # else33 // use DLL34 # define PACPUSLIB_API __declspec(dllimport)35 # endif36 #else37 // On other platforms, simply ignore this38 # define PACPUSLIB_API39 25 #endif 40 26
Note:
See TracChangeset
for help on using the changeset viewer.