* Introduced interface UserInterface, which abstracts the user interface code.

* Added implementation GraphicalUserInterface for the current GUI.

TeamDebugger does no longer know about TeamWindow.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33594 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-10-15 09:47:24 +00:00
parent 4b6cb4f5ad
commit e3a631c0b4
43 changed files with 305 additions and 90 deletions
@@ -0,0 +1,23 @@
/*
* Copyright 2009, Ingo Weinhold, [email protected].
* Distributed under the terms of the MIT License.
*/
#include "UserInterface.h"
// #pragma mark - UserInterface
UserInterface::~UserInterface()
{
}
// #pragma mark - UserInterfaceListener
UserInterfaceListener::~UserInterfaceListener()
{
}