summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-11-28 20:07:57 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-11-28 20:16:52 (GMT)
commit5c2567847c73f6095206dfbd451fe2f26f4056aa (patch)
tree06a9ed263bec86531bd08b89242c78b3aeb0d8a0 /Swift/Controllers/XMLConsoleController.h
parent85dcc894ccf417ec8b057d868afb1d8006634ac4 (diff)
downloadswift-5c2567847c73f6095206dfbd451fe2f26f4056aa.zip
swift-5c2567847c73f6095206dfbd451fe2f26f4056aa.tar.bz2
Implemented XML console.
Resolves: #135
Diffstat (limited to 'Swift/Controllers/XMLConsoleController.h')
-rw-r--r--Swift/Controllers/XMLConsoleController.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Swift/Controllers/XMLConsoleController.h b/Swift/Controllers/XMLConsoleController.h
index 52a8269..134bf0d 100644
--- a/Swift/Controllers/XMLConsoleController.h
+++ b/Swift/Controllers/XMLConsoleController.h
@@ -7,13 +7,19 @@
#include "Swift/Controllers/UIEvents/UIEventStream.h"
namespace Swift {
+ class String;
class XMLConsoleWidgetFactory;
class XMLConsoleWidget;
+
class XMLConsoleController {
public:
XMLConsoleController(UIEventStream* uiEventStream, XMLConsoleWidgetFactory* xmlConsoleWidgetFactory);
~XMLConsoleController();
+ public:
+ void handleDataRead(const String& data);
+ void handleDataWritten(const String& data);
+
private:
void handleUIEvent(boost::shared_ptr<UIEvent> event);