Changeset 67 in pacpusframework for trunk/include/Pacpus/kernel
- Timestamp:
- Jan 9, 2013, 7:17:44 PM (12 years ago)
- Location:
- trunk/include/Pacpus/kernel
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentManager.h
r66 r67 17 17 #define DEF_PACPUS_COMPONENTMANAGER_H 18 18 19 #include <cstddef>20 21 #include <QMap>22 #include <QList>23 #include <QPluginLoader>24 25 19 #include <Pacpus/kernel/pacpus.h> 26 20 #include <Pacpus/kernel/ComponentFactoryBase.h> 27 21 #include <Pacpus/kernel/PacpusPluginInterface.h> 28 22 #include <Pacpus/kernel/XmlConfigFile.h> 23 24 #include <cstddef> 25 #include <QList> 26 #include <QMap> 27 #include <QPluginLoader> 29 28 30 29 namespace pacpus { … … 57 56 static PACPUSLIB_API void destroy(); 58 57 58 /// Automatic deleter class. 59 59 struct destroyer { 60 /// Invokes ComponentManager::destroy() method if @b mgr pointer is not null. 60 61 void operator()(ComponentManager * mgr) const 61 62 { -
trunk/include/Pacpus/kernel/DbiteFile.h
r66 r67 136 136 /// @throws nothing 137 137 hdfile_header_t::FileSizeT getFileSize() const; 138 /// @returns the real size of the written file in [bytes] as obtaine from system. 138 139 int64_t getRealFileSize(); 139 140 /// @throws nothing -
trunk/include/Pacpus/kernel/DbiteFileTypes.h
r66 r67 15 15 #define DEF_PACPUS_DBITEFILETYPES_H 16 16 17 /// Basic file types 17 18 enum BasicType 18 19 { … … 21 22 , FILE_TEXT 22 23 , FILE_IMAGE3D 23 , FILE_DBT_UNKNOWN 24 , FILE_DBT_UNKNOWN ///< Unknown file type 24 25 , FILE_JPEG 25 26 , STREAM8POSITION = 100 -
trunk/include/Pacpus/kernel/GenericObservable.h
r66 r67 26 26 GenericObservable class template instances. 27 27 */ 28 class GenericObservableBase { 28 class GenericObservableBase 29 { 29 30 public: 31 /// @todo Documentation 30 32 virtual ~GenericObservableBase() {} 31 33 }; … … 39 41 */ 40 42 template <typename T> 41 class GenericObservable : GenericObservableBase { 43 class GenericObservable 44 : GenericObservableBase 45 { 42 46 public: 47 /// @todo Documentation 43 48 typedef GenericObserverInterface<T> ObserverType; 44 49 50 /// @todo Documentation 45 51 GenericObservable() {} 52 /// @todo Documentation 46 53 virtual ~GenericObservable() {} 47 54 -
trunk/include/Pacpus/kernel/PacpusPluginInterface.h
r66 r67 13 13 #ifndef DEF_PACPUS_PLUGININTERFACE_H 14 14 #define DEF_PACPUS_PLUGININTERFACE_H 15 16 #include <QObject> 15 17 16 18 /** PacpusPluginInterface -
trunk/include/Pacpus/kernel/cstdint.h
r66 r67 7 7 /// @version $Id$ 8 8 /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved. 9 /// @brief Portable version of <cstdint> C99 header.9 /// @brief Portable version of \<cstdint\> C99 header. 10 10 /// 11 /// Portable version of <cstdint> C99 header.11 /// Portable version of \<cstdint\> C99 header. 12 12 /// It is necessary due to the non-conformance of MSVC before version 2010 to the C99 standard. 13 13 -
trunk/include/Pacpus/kernel/hdfile_header_t.h
r66 r67 17 17 #include <Pacpus/kernel/road_time.h> 18 18 19 /// @todo Documentation 19 20 #define HEADER_SIGNATURE_LENGTH 4 20 #define VERSION_NUMBER 2 21 /// @todo Documentation 22 #define VERSION_NUMBER 2 21 23 22 24 #pragma pack(push,4) … … 45 47 /// @todo Documentation 46 48 SignatureT Signature[HEADER_SIGNATURE_LENGTH]; 47 /// Record data type 48 /// Should default to @linkFILE_DBT_UNKNOWN49 /// @see DbiteFileTypes.h for more 49 /// Record data type. 50 /// Should default to ::FILE_DBT_UNKNOWN 51 /// @see DbiteFileTypes.h for more information about available types. 50 52 DataTypeT Type; 51 53 /// File format version
Note:
See TracChangeset
for help on using the changeset viewer.