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