librnr  1.14.5
RoadNarrows Robotics Common Library 1
pkg.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 /*! \file
3  *
4  * \brief RoadNarrows Robotics standard package information.
5  *
6  * \pkgsynopsis
7  * RoadNarrows Robotics Common Library 1
8  *
9  * \pkgcomponent{Library}
10  * librnr
11  *
12  * \pkgfile{rnr/pkg.h}
13  *
14  * \author Robin Knight (robin.knight@roadnarrows.com)
15  *
16  * \pkgcopyright{2005-2018,RoadNarrows LLC.,http://www.roadnarrows.com}
17  *
18  * \license{MIT}
19  *
20  * \EulaBegin
21  * See the README and EULA files for any copyright and licensing information.
22  * \EulaEnd
23  */
24 ////////////////////////////////////////////////////////////////////////////////
25 
26 #ifndef _RNR_PKG_H
27 #define _RNR_PKG_H
28 
30 
31 /*!
32  * RNR Package Information Structure
33  */
34 typedef struct
35 {
36  const char *m_sPkgName; ///< package name string
37  const char *m_sPkgVersion; ///< package dotted version string
38  const char *m_sPkgTimeStamp; ///< package build date
39  const char *m_sPkgDate; ///< package extended creation date string
40  const char *m_sPkgFullName; ///< package full name string (incl version)
41  const char *m_sPkgAuthors; ///< package author(s) string
42  const char *m_sPkgOwners; ///< package owner(s) string
43  const char *m_sPkgDisclaimer; ///< package disclaimer string
44 } PkgInfo_T;
45 
47 
48 
49 #endif // _RNR_PKG_H
const char * m_sPkgVersion
package dotted version string
Definition: pkg.h:37
const char * m_sPkgTimeStamp
package build date
Definition: pkg.h:38
const char * m_sPkgDate
package extended creation date string
Definition: pkg.h:39
Definition: pkg.h:34
const char * m_sPkgName
package name string
Definition: pkg.h:36
#define C_DECLS_BEGIN
C declaration block begin in C.
Definition: rnrconfig.h:71
#define C_DECLS_END
C declaration block end in C.
Definition: rnrconfig.h:72
const char * m_sPkgDisclaimer
package disclaimer string
Definition: pkg.h:43
const char * m_sPkgOwners
package owner(s) string
Definition: pkg.h:42
const char * m_sPkgAuthors
package author(s) string
Definition: pkg.h:41
const char * m_sPkgFullName
package full name string (incl version)
Definition: pkg.h:40