00001
00002
00030
00031
00032
00033 #include "pbori_defs.h"
00034
00035 #ifndef CLiteralCodes_h_
00036 #define CLiteralCodes_h_
00037
00038 BEGIN_NAMESPACE_PBORI
00039
00044 class CLiteralCodes {
00045 public:
00046
00048 enum literal_codes {
00049 first_code = 0,
00050 empty = first_code,
00051 space,
00052 plus,
00053 term_separator,
00054 times,
00055 comma,
00056 list_separator,
00057 default_variable_name,
00058 variable_head,
00059 variable_tail,
00060 between_list_separator,
00061 last_code
00062 };
00063
00064 };
00065
00066 END_NAMESPACE_PBORI
00067
00068 #endif