Guest User

Untitled

a guest
Jul 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #pragma once
  2.  
  3. public ref class ExpressionParse {
  4. System::String ^ source;
  5.  
  6. public:
  7. ExpressionParse(void);
  8.  
  9. private: System::String ^ findNegatives(System::String ^ src) {};
  10. private: System::String ^ replace(System::String ^ target, System::String ^ replacement, int startIndex, int endIndex) {};
  11. private: System::String ^ insertBrackets(System::String ^ src) {};
  12. private: double parse(System::String ^ src) {};
  13.  
  14. public: bool isRight(System::String ^ source) {};
  15. public: double getResult(System::String ^ src) {};
  16. public: double getResult() {};
  17. };
Add Comment
Please, Sign In to add comment