api.h
author insilmaril
Thu, 14 Sep 2006 11:38:17 +0000
changeset 383 bf5ba1bd4764
parent 377 5391ab620c95
child 394 67cfa6e6b863
permissions -rw-r--r--
1.8.57 - more changes in history window, Note Editor is QT4 now
     1 #ifndef API_H
     2 #define API_H
     3 
     4 #include <qstringlist.h>
     5 
     6 class API
     7 {
     8 public:
     9 	API();
    10 	void initCommand();
    11 	void parseCommand (const QString&);
    12 	QString command();
    13 	QStringList parameters();
    14 	QString errorDesc();
    15 	bool error();
    16 	void setError (const QString &);
    17 	bool checkParamCount (const int &);
    18 	bool checkParamIsInt (const int &);
    19 	int parInt (bool &,const uint&);
    20 	QString parString(bool &,const int &);
    21 private:
    22 	QString com;
    23 	QStringList paramList;
    24 	QString errorString;
    25 	bool noErr;
    26 };
    27 
    28 #endif