CUBA
prop.hh
1 
8 #ifndef UTILS_PROP_HH_
9 #define UTILS_PROP_HH_
10 
11 #include "heads.hh"
12 
13 namespace ruba {
14 
15 class prop {
16 public:
17  prop();
18  ~prop();
19 
20  static bool OPT_PRINT_ALL;
21  static bool OPT_PRINT_CMD;
22  static bool OPT_PRINT_ADJ;
23 
24  static bool OPT_PROB_REACHABILITY;
25  static bool OPT_SEQ_ATM;
26 
27  static const string COMMENT;
28 
29  static const char SHARED_LOCAL_DELIMITER;
30  static const char STACK_DELIMITER;
31  static const char THREAD_DELIMITER;
32 
33  static string MSG_SEPARATOR;
34  static string MSG_TR_PLATEAU_AT_K;
35  static string MSG_TR_COLLAPSE_AT_K;
36  static string MSG_NUM_VISIBLE_STATES;
37 };
38 
39 } /* namespace ruba */
40 
41 #endif /* UTILS_PROP_HH_ */
Definition: cpda.cc:10
Definition: prop.hh:15