diff options
Diffstat (limited to 'client/macro.h')
-rw-r--r-- | client/macro.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/client/macro.h b/client/macro.h index 4cd7109..f00f172 100644 --- a/client/macro.h +++ b/client/macro.h @@ -28,15 +28,16 @@ #define __PRACRO_MACRO_H__ #include <QString> -#include <QObject> -#include <QEvent> -#include <QLinkedList> - -#include "macrowindow.h" - -extern QLinkedList< MacroWindow * > macrowindows; +/** + * Public macro creation function. + * Initiates the creation of a new macro. + */ void new_macro(QString course, QString name); + +/** + * Delete all closed windows from window list + */ void cleanup_macros(); #endif/*__PRACRO_MACRO_H__*/ |