]> Shamusworld >> Repos - architektonas/blob - src/base/script.h
Fixed problem with MDI activation.
[architektonas] / src / base / script.h
1 #ifndef __SCRIPT_H__
2 #define __SCRIPT_H__
3
4 #include <QtCore>
5
6 #warning "!!! THIS CLASS IS OBSOLETE !!!"
7 /**
8  * Class for representing a script. This is implemented as a QString
9  * containing the script name.
10  *
11  * OBSOLETE
12  *
13  * @author Andrew Mustun
14  */
15 class Script
16 {
17         public:
18                 Script(const QString & name, const QString & path);
19                 //Script(const char* name);
20
21                 QString getName() const;
22                 QString getPath() const;
23
24         private:
25                 //! Script name
26                 QString name;
27
28                 //! Full path to script
29                 QString path;
30 };
31
32 #endif