- Timestamp:
- Jul 30, 2013, 11:40:11 AM (11 years ago)
- Location:
- branches/2.0-beta1
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/include/Pacpus/PacpusTools/BinaryDecoder.h
r89 r126 30 30 #ifndef BINARYDECODER_H 31 31 #define BINARYDECODER_H 32 33 #include "PacpusToolsConfig.h" 32 34 33 35 #ifdef __cplusplus -
branches/2.0-beta1/include/Pacpus/PacpusTools/PosixShMem.h
r89 r126 18 18 #include <QSystemSemaphore> 19 19 20 #include <Pacpus/PacpusTools/ShMemBase.h> 20 #include "ShMemBase.h" 21 #include "PacpusToolsConfig.h" 21 22 22 23 /// @todo Documentation 23 class P osixShMem24 class PACPUS_TOOLS_API PosixShMem 24 25 : public ShMemBase 25 26 { -
branches/2.0-beta1/include/Pacpus/PacpusTools/ShMem.h
r89 r126 15 15 #define DEF_PACPUS_SHMEM_H 16 16 17 #include "PacpusToolsConfig.h" 18 17 19 #ifdef WIN32 18 20 # include "Win32ShMem.h" … … 30 32 /// 31 33 /// Inherits from Win32ShMem on Windows system and from PosixShMem on Unix-like systems. 32 class ShMem34 class PACPUS_TOOLS_API ShMem 33 35 : public ShMemType 34 36 { -
branches/2.0-beta1/include/Pacpus/PacpusTools/ShMemBase.h
r89 r126 15 15 #define DEF_PACPUS_SHMEMBASE_H 16 16 17 #include "PacpusToolsConfig.h" 18 17 19 /// Base class for shared memory objects. 18 class ShMemBase20 class PACPUS_TOOLS_API ShMemBase 19 21 { 20 22 public: -
branches/2.0-beta1/include/Pacpus/PacpusTools/Win32ShMem.h
r89 r126 16 16 #define DEF_PACPUS_WIN32SHMEM_H 17 17 18 #include <Pacpus/PacpusTools/ShMemBase.h> 18 #include "PacpusToolsConfig.h" 19 #include "ShMemBase.h" 19 20 20 21 /// Windows handle (opaque pointer) type definition … … 24 25 25 26 /// Shared memory object for Windows. 26 class Win32ShMem27 class PACPUS_TOOLS_API Win32ShMem 27 28 : public ShMemBase 28 29 { -
branches/2.0-beta1/include/Pacpus/PacpusTools/geodesie.h
r99 r126 22 22 #include <QVector3D> 23 23 24 #include "PacpusToolsConfig.h" 25 24 26 namespace Geodesie { 25 27 … … 38 40 /// @todo Documentation 39 41 /// @todo Rewrite! 40 struct Matrice42 struct PACPUS_TOOLS_API Matrice 41 43 { 42 44 /// Copy ctor … … 76 78 //////////////////////////////////////////////////////////////////////// 77 79 /// @todo Documentation 78 class Raf9880 class PACPUS_TOOLS_API Raf98 79 81 { 80 82 public: -
branches/2.0-beta1/include/Pacpus/PacpusTools/matrice.h
r89 r126 15 15 #define MATRIX_H 16 16 17 #include "PacpusToolsConfig.h" 18 17 19 typedef enum 18 20 { … … 24 26 /// Simple matrix. 25 27 /// @todo Documentation 26 class matrice28 class PACPUS_TOOLS_API matrice 27 29 { 28 30 typedef double *ligne; -
branches/2.0-beta1/src/PacpusTools/CMakeLists.txt
r124 r126 14 14 add_definitions( 15 15 ${QT_DEFINITIONS} 16 -DPACPUS_TOOLS_EXPORTS 16 17 ) 17 18
Note:
See TracChangeset
for help on using the changeset viewer.