1 // $Id: menu_strings.h,v 1.16 2011/03/07 06:08:51 bobgian Exp $
2 
3 /*
4  *  Copyright 2002  Peter Beerli, Mary Kuhner, Jon Yamato and Joseph Felsenstein
5  *
6  *  This software is distributed free of charge for non-commercial use
7  *  and is copyrighted.  Of course, we do not guarantee that the software
8  *  works, and are not responsible for any damage you may cause or have.
9  *
10  */
11 
12 #ifndef MENU_STRINGS_H
13 #define MENU_STRINGS_H
14 
15 #include <string>
16 
17 class key
18 {
19   public:
20     static const std::string dot;
21     static const std::string R;
22     static const std::string Q;
23 };
24 
25 class menustr
26 {
27   public:
28     static const std::string acknowledge;
29     static const std::string bottomLine;
30     static const std::string bottomLineAtTop;
31     static const std::string divider;
32     static const std::string carriageReturn;
33     static const std::string emptyString;
34     static const std::string inconsistencies;
35     static const std::string space;
36     static const std::string initial;
37     static const std::string final;
38     static const std::string chains;
39     static const std::string discard;
40     static const std::string interval;
41     static const std::string samples;
42 };
43 
44 #endif // MENU_STRINGS_H
45 
46 //____________________________________________________________________________________
47