File: commandoptionparser.hpp

package info (click to toggle)
mothur 1.41.21-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,892 kB
  • sloc: cpp: 163,600; makefile: 84; sh: 29
file content (23 lines) | stat: -rwxr-xr-x 573 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef COMMANDOPTIONPARSER_HPP
#define COMMANDOPTIONPARSER_HPP

#include "mothur.h"
#include "mothurout.h"
#include "currentfile.h"

//**********************************************************************************************************************

class CommandOptionParser {
public:
	CommandOptionParser(string);
	string getCommandString();
	string getOptionString();
	
private:
	string commandString, optionString;
	MothurOut* m;
};

//**********************************************************************************************************************

#endif