git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
135 lines
2.0 KiB
C++
135 lines
2.0 KiB
C++
/***********************************************************************
|
|
* 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()
|
|
{
|
|
}
|
|
|
|
|