QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RScriptAction.h
Go to the documentation of this file.
1 #ifndef RSCRIPTACTION_H
2 #define RSCRIPTACTION_H
3 
4 #include "RAction.h"
5 #include "RMainWindow.h"
6 
14 class RScriptAction: public RAction {
15 
16 public:
17  RScriptAction(const QString& scriptFile, RGuiAction* guiAction);
18  QString getScriptFile() {
19  return scriptFile;
20  }
21 
22 protected:
23  QString scriptFile;
24 };
25 
27 
28 #endif