File: argProcessor.hpp

package info (click to toggle)
parafly 0.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,060 kB
  • sloc: sh: 1,042; cpp: 266; makefile: 19; perl: 3
file content (31 lines) | stat: -rwxr-xr-x 430 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef __argProcessor__
#define __argProcessor__

#include <map>
#include <string>
using namespace std;

class ArgProcessor {
  
public:
  ArgProcessor(int argc, char* argv[]);
  
  bool isArgSet(string arg);
  
  int getIntVal(string arg);
  
  long getLongVal(string arg);

  float getFloatVal(string arg);
  
  string getStringVal(string arg);
  
private:
  map<string,bool> argSet;
  map<string,string> argVal;

};


#endif