Changeset 94 in pacpusframework for branches/2.0-beta1/include
- Timestamp:
- May 22, 2013, 3:25:24 PM (11 years ago)
- Location:
- branches/2.0-beta1/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/include/Pacpus/kernel/PacpusEvent.h
r89 r94 4 4 #include <QEvent> 5 5 #include "Pacpus/kernel/road_time.h" 6 #include <Pacpus/kernel/pacpus.h> 6 7 7 8 namespace pacpus { … … 32 33 }; 33 34 34 class P acpusEvent : public QEvent35 class PACPUSLIB_API PacpusEvent : public QEvent 35 36 { 36 37 public: … … 50 51 }; 51 52 52 class P acpusGenericEvent : public PacpusEvent53 class PACPUSLIB_API PacpusGenericEvent : public PacpusEvent 53 54 { 54 55 public: -
branches/2.0-beta1/include/Pacpus/kernel/inputOutputBase.h
r89 r94 3 3 4 4 #include <Pacpus/kernel/ConnectionBase.h> 5 #include <Pacpus/kernel/pacpus.h> 5 6 6 7 #include <typeinfo> … … 13 14 class ComponentBase; 14 15 15 class AbstractInterface : public QObject16 class PACPUSLIB_API AbstractInterface : public QObject 16 17 { 17 18 Q_OBJECT … … 30 31 }; 31 32 32 class InputInterfaceBase : public AbstractInterface33 class PACPUSLIB_API InputInterfaceBase : public AbstractInterface 33 34 { 34 35 Q_OBJECT … … 41 42 }; 42 43 43 class OutputInterfaceBase: public AbstractInterface44 class PACPUSLIB_API OutputInterfaceBase: public AbstractInterface 44 45 { 45 46 Q_OBJECT -
branches/2.0-beta1/include/Pacpus/kernel/inputOutputInterface.h
r89 r94 2 2 #define IN_OUT_INTERFACE_H 3 3 4 #include <Pacpus/kernel/pacpus.h> 4 5 #include <Pacpus/kernel/inputOutputBase.h> 5 6 #include <Pacpus/kernel/Log.h> -
branches/2.0-beta1/include/Pacpus/structure/genericLidarStructures.h
r89 r94 51 51 }*/ 52 52 nbLayer = layerCount; 53 for ( typenameQVector<LidarLayer>::iterator it = layers.begin(), itend = layers.end(); it != itend; ++it)53 for (/*typename*/ QVector<LidarLayer>::iterator it = layers.begin(), itend = layers.end(); it != itend; ++it) 54 54 it->points.reserve(pointsPerLayer); 55 55 -
branches/2.0-beta1/include/PacpusCityVIP/Video/sensor/Camera1394.h
r89 r94 70 70 #include "kernel/ComponentBase.h" 71 71 #include "kernel/DbiteFile.h" 72 #include "../DbtPlyPluginVision/ImageViewer.h"72 //#include "../DbtPlyPluginVision/ImageViewer.h" 73 73 74 74 #ifdef WIN32 75 # define NOMINMAX 75 76 # include <windows.h> 76 77 # include "C1394Camera/1394Camera.h" … … 154 155 pacpus::DbiteFile file_; 155 156 156 ImageViewer * viewer_;157 // ImageViewer * viewer_; 157 158 158 159 };
Note:
See TracChangeset
for help on using the changeset viewer.