diff options
author | deva <deva> | 2008-08-18 14:54:03 +0000 |
---|---|---|
committer | deva <deva> | 2008-08-18 14:54:03 +0000 |
commit | 3c199adf6c317ade446120db1cdb51b473edca57 (patch) | |
tree | 8b865ad2fd9208be60333bf234bf8a8d5929d8b9 /client/macro.h | |
parent | cbb2adb8f35dfc11ac58bff6fa56b99f071a76cd (diff) |
Rewrite of all network code, with a reusable socket. Still needs some error checking.
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__*/ |