It is accomplished ...

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
ejakowatz
2002-07-09 12:24:59 +00:00
commit 52a3801208
2025 changed files with 472889 additions and 0 deletions
+134
View File
@@ -0,0 +1,134 @@
/***********************************************************************
* AUTHOR: nobody <baron>
* FILE: InputServerMethod.cpp
* DATE: Sun Dec 16 15:57:43 2001
* DESCR:
***********************************************************************/
#include "InputServerMethod.h"
#include "Messenger.h"
/*
* Method: BInputServerMethod::BInputServerMethod()
* Descr:
*/
BInputServerMethod::BInputServerMethod(const char *name,
const uchar *icon)
{
}
/*
* Method: BInputServerMethod::~BInputServerMethod()
* Descr:
*/
BInputServerMethod::~BInputServerMethod()
{
}
/*
* Method: BInputServerMethod::MethodActivated()
* Descr:
*/
status_t
BInputServerMethod::MethodActivated(bool active)
{
status_t dummy;
return dummy;
}
/*
* Method: BInputServerMethod::EnqueueMessage()
* Descr:
*/
status_t
BInputServerMethod::EnqueueMessage(BMessage *message)
{
status_t dummy;
return dummy;
}
/*
* Method: BInputServerMethod::SetName()
* Descr:
*/
status_t
BInputServerMethod::SetName(const char *name)
{
status_t dummy;
return dummy;
}
/*
* Method: BInputServerMethod::SetIcon()
* Descr:
*/
status_t
BInputServerMethod::SetIcon(const uchar *icon)
{
status_t dummy;
return dummy;
}
/*
* Method: BInputServerMethod::SetMenu()
* Descr:
*/
status_t
BInputServerMethod::SetMenu(const BMenu *menu,
const BMessenger target)
{
status_t dummy;
return dummy;
}
/*
* Method: BInputServerMethod::_ReservedInputServerMethod1()
* Descr:
*/
void
BInputServerMethod::_ReservedInputServerMethod1()
{
}
/*
* Method: BInputServerMethod::_ReservedInputServerMethod2()
* Descr:
*/
void
BInputServerMethod::_ReservedInputServerMethod2()
{
}
/*
* Method: BInputServerMethod::_ReservedInputServerMethod3()
* Descr:
*/
void
BInputServerMethod::_ReservedInputServerMethod3()
{
}
/*
* Method: BInputServerMethod::_ReservedInputServerMethod4()
* Descr:
*/
void
BInputServerMethod::_ReservedInputServerMethod4()
{
}