Advertisement
Guest User

OptionParser.hpp

a guest
Feb 17th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include<unordered_map>
  2. using namespace std;
  3.  
  4. class OptionParser  
  5. {
  6.     private:
  7.         bool mapInitialized;
  8.         unordered_map<const char*,unsigned char> u;
  9.     public:
  10.         OptionParser();
  11.         OptionParser(const char** arg);
  12.         ~OptionParser();
  13.         void initializeMap();
  14.  
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement