Changeset 19023 for juggler/trunk/modules/gadgeteer/gadget/gadgetParam.h.in
- Timestamp:
- 07/11/06 15:21:30 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/gadgeteer/gadget/gadgetParam.h.in
r18824 r19023 28 28 #define _GAD_PARAM_H_ 29 29 30 #include <gadget/gadgetConfig.h>31 32 33 30 /** 34 31 * The 9-digit Gadgeteer version integer. This form provides three digits for … … 40 37 41 38 /** 39 * The Gadgeteer version \em string. Instead of referencing this symbol, use 40 * gadget::GADGET_VERSION or gadget::getVersionString(). 41 */ 42 #define __GADGET_VERSION_STRING__ @VER_STRING@ 43 44 /** 42 45 * The individual Gadgeteer version numbers. 43 46 */ … … 46 49 #define __GADGET_PATCH__ @PATCH_VER_NUMBER@ 47 50 48 namespace gadget49 {50 /**51 * This is the "human-readable" Gadgeteer version \em string. The full form52 * includes the version number (major.minor.patch-build), the canonical53 * name of the release, the threading subsystem, and the build date. The54 * major version number is updated when major architectural changes are55 * made; the minor when there are minor API changes; and the patch when56 * there are bug fixes. The build number is usually representative of the57 * nightly build process relative to a given version x.y.z.58 *59 * @see gadget::getVersionString()60 */61 extern GADGET_DATA_API(const char*) GADGET_VERSION;62 }63 64 65 51 #endif /* _GAD_PARAM_H_ */
