Advertisement
Guest User

Untitled

a guest
May 25th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #ifndef CLUERECORD_H
  2. #define CLUERECORD_H
  3.  
  4. #define REALLOC_STEP 10 //string grow step size
  5.  
  6. #define CLUE_WORD_SEPARATOR '\t' //tab == 9
  7. #define CLUE_META_SEPARATOR '\b' //backspace == 8
  8.  
  9. #define CLUE_META_TYPE_GRAMMAR 0
  10. #define CLUE_META_TYPE_CONTEXT 1
  11. #define CLUE_META_TYPE_COUNTRY 2
  12. #define CLUE_META_TYPE_REFERENCE 3 //clue >= 6.0
  13.  
  14. class ClueRecord
  15. {
  16. private:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement