Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. enum type_of_expression
  2. {
  3.     _operation_,
  4.     _name_,
  5.     _constant_
  6. };
  7.  
  8. struct generation_token // for poliz
  9. {
  10.     type_of_expression Type;
  11.     std::string content;
  12.     generation_token()
  13.     {
  14.         Type = _constant_;
  15.         content = "0";
  16.     }
  17.     generation_token(type_of_expression _Type_, std::string _content_)
  18.     {
  19.         Type = _Type_;
  20.         content = _content_;
  21.     }
  22. };
  23.  
  24. extern std::vector <generation_token> Generation_poliz;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement