Add stubs for the eventual command line interface.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43156 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent
2011-11-03 10:42:56 +00:00
parent 787740e0f9
commit 20616c59c1
3 changed files with 116 additions and 0 deletions
@@ -0,0 +1,73 @@
/*
* Copyright 2011, Rene Gollent, [email protected].
* Distributed under the terms of the MIT License.
*/
#include "CommandLineUserInterface.h"
CommandLineUserInterface::CommandLineUserInterface()
{
}
CommandLineUserInterface::~CommandLineUserInterface()
{
}
const char*
CommandLineUserInterface::ID() const
{
return "BasicCommandLineUserInterface";
}
status_t
CommandLineUserInterface::Init(Team* team, UserInterfaceListener* listener)
{
return B_UNSUPPORTED;
}
void
CommandLineUserInterface::Show()
{
}
void
CommandLineUserInterface::Terminate()
{
}
status_t
CommandLineUserInterface::LoadSettings(const TeamUISettings* settings)
{
return B_UNSUPPORTED;
}
status_t
CommandLineUserInterface::SaveSettings(TeamUISettings*& settings) const
{
return B_UNSUPPORTED;;
}
void
CommandLineUserInterface::NotifyUser(const char* title, const char* message,
user_notification_type type)
{
}
int32
CommandLineUserInterface::SynchronouslyAskUser(const char* title,
const char* message, const char* choice1, const char* choice2,
const char* choice3)
{
return 0;
}