correct use of const functions

This commit is contained in:
Pavol Marko
2004-03-31 18:05:07 +00:00
parent b01c6a27f6
commit b677e5c164
2 changed files with 8 additions and 8 deletions

View File

@@ -144,10 +144,10 @@ public:
void parseValue(float fValue);
void parseValue(const char *sz);
void executeEvents();
int getArgNum(); //{ return (parsePos+1); }
const char* getArgString(int a);
int getArgInteger(int a);
float getArgFloat(int a);
int getArgNum() const; //{ return (parsePos+1); }
const char* getArgString(int a) const;
int getArgInteger(int a) const;
float getArgFloat(int a) const;
void clearEvents(void);
static int getEventId( const char* msg );
};