source: trunk/duchamp.hh @ 67

Last change on this file since 67 was 57, checked in by Matthew Whiting, 18 years ago

Created a base definition file, duchamp.hh, that will store fundamental
definitions for the program.
Only has a few error & version messages at this point, for interacting with
command line flags.

File size: 351 bytes
Line 
1#include <string.h>
2
3const std::string ERR_USAGE_MSG =
4"Usage:: Duchamp.x -p [parameter file]\n\
5  Other options:\n\
6    -v       Version number\n\
7    -h       This help information\n";
8
9const std::string ERR_USAGE_MSG_SHORT = "Usage:: Duchamp.x -p [parameter file]\n";
10
11const std::string PROGNAME = "Duchamp";
12
13const std::string VERSION = "0.9.1";
Note: See TracBrowser for help on using the repository browser.