Changeset 299 in pacpusframework for trunk/include/Pacpus
- Timestamp:
- Apr 8, 2014, 8:52:07 AM (11 years ago)
- Location:
- trunk/include/Pacpus
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/PacpusTools/geodesie.h
r224 r299 23 23 #include "PacpusToolsConfig.h" 24 24 25 #include <Pacpus/kernel/ pacpus.h>25 #include <Pacpus/kernel/deprecated.h> 26 26 27 27 #include <boost/math/constants/constants.hpp> -
trunk/include/Pacpus/kernel/XmlConfigFile.h
r288 r299 23 23 #define DEF_PACPUS_XMLCONFIGFILE_H 24 24 25 #include <Pacpus/kernel/ pacpus.h>25 #include <Pacpus/kernel/deprecated.h> 26 26 #include <Pacpus/kernel/PacpusLibConfig.h> 27 27 #include <Pacpus/kernel/XmlComponentConfig.h> -
trunk/include/Pacpus/kernel/pacpus.h
r198 r299 17 17 18 18 #include <Pacpus/kernel/road_time.h> 19 20 /// @def PACPUS_DEPRECATED(func)21 /// Develops to the function or method declaration @b func22 /// and marks it as deprecated.23 24 /// @def PACPUS_DEPRECATED_MSG(func, msg)25 /// Develops to the function or method declaration @b func26 /// and marks it as deprecated with a given comment @b msg.27 #ifdef __GNUC__28 # define PACPUS_DEPRECATED(func) func __attribute__ ((deprecated))29 # define PACPUS_DEPRECATED_MSG(func, msg) PACPUS_DEPRECATED(func)30 #elif defined(_MSC_VER)31 # define PACPUS_DEPRECATED(func) __declspec(deprecated) func32 # define PACPUS_DEPRECATED_MSG(func, msg) __declspec(deprecated("was declared deprecated: " msg)) func33 #else34 # pragma message("WARNING: You need to implement PACPUS_DEPRECATED for this compiler")35 # define PACPUS_DEPRECATED(func) func36 # define PACPUS_DEPRECATED_MSG(func, msg) func37 #endif38 19 39 20 struct donnees_gps
Note:
See TracChangeset
for help on using the changeset viewer.