/* * CommandLineWindow.cpp * * Created on: May 8, 2010 * Author: heber */ #include #include "UIElements/CommandLineWindow.hpp" #include "UIElements/CommandLineStatusIndicator.hpp" #include using namespace std; // TODO: see what code can be moved to a base class for Graphic and CommandLine Windows CommandLineWindow::CommandLineWindow(menuPopulaters populaters) { // Add status indicators etc... statusIndicator = new CommandLineStatusIndicator(); } CommandLineWindow::~CommandLineWindow() { delete statusIndicator; } void CommandLineWindow::display() { }