git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@45 8131a0b2-b21c-1c47-bd6a-f003126495bd
11 lines
158 B
C++
11 lines
158 B
C++
|
|
#ifndef PARSECMDLINE_H
|
|
#define PARSECMDLINE_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
std::vector<std::string> parseCmdLine(char * cmdline);
|
|
|
|
#endif
|