Advertisement
GeeckoDev

expression.h

Dec 14th, 2011
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #ifndef EXPRESSION_H
  2. #define EXPRESSION_H
  3.  
  4. #include <stack>
  5. #include <vector>
  6.  
  7. class Expression
  8. {
  9. private:
  10.     std::stack<int>* saPile;
  11. public:
  12.     Expression();
  13.     ~Expression();
  14.     int evaluer(std::vector<char>*);
  15.     int conversionCharEnInt(char);
  16.     int traiterOperation(char);
  17. };
  18.  
  19. #endif // EXPRESSION_H
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement