1
0
Fork 0

warning fix

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1333
This commit is contained in:
Sjoerd van der Berg 2003-10-14 23:31:12 +00:00
parent a0144ccfa9
commit 4fadb16b47

View file

@ -37,10 +37,10 @@ public:
bool FindHex(char * name,int & value,bool remove=false);
bool FindInt(char * name,int & value,bool remove=false);
bool FindString(char * name,std::string & value,bool remove=false);
bool FindCommand(int which,std::string & value);
bool FindCommand(unsigned int which,std::string & value);
bool FindStringBegin(char * begin,std::string & value, bool remove=false);
bool FindStringRemain(char * name,std::string & value);
int GetCount(void);
unsigned int GetCount(void);
private:
typedef std::list<std::string>::iterator cmd_it;
std::list<std::string> cmds;