home *** CD-ROM | disk | FTP | other *** search
- //------------------------------------------------------------------------
- // ^FILE: patchlevel.c - version specific information
- //
- // ^DESCRIPTION:
- // This file contains all the version specific information of this
- // particular release of the CmdLine library. It also implements
- // the static member functions of a CmdLine that return version
- // specific information.
- //
- // ^HISTORY:
- // 04/03/92 Brad Appleton <brad@ssd.csd.harris.com> Created
- //
- // 03/03/93 Brad Appleton <brad@ssd.csd.harris.com>
- // - Modified for patch 1
- //-^^---------------------------------------------------------------------
-
- #include "cmdline.h"
-
- // Record the version-identifier for this project.
- //
- // My source-code management system lets me use a symbolic-name
- // to identify a given configuration of the project. From this
- // symbolic-name I can easily find out the exact version of each
- // file that makes up this version of the project.
- //
- static const char ident[] =
- "@(#)SMS task: cmdline-1.01" ;
-
-
- // Release and patchlevel information
- #define CMDLINE_RELEASE 1
- #define CMDLINE_PATCHLEVEL 1
- #define CMDLINE_IDENT "@(#)CmdLine 1.01"
-
- unsigned
- CmdLine::release(void) { return CMDLINE_RELEASE; }
-
- unsigned
- CmdLine::patchlevel(void) { return CMDLINE_PATCHLEVEL; }
-
- const char *
- CmdLine::ident(void) {
- static const char Ident[] = CMDLINE_IDENT ;
-
- return Ident;
- }
-
-