removed unused files
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8716 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,27 +0,0 @@
|
|||||||
//
|
|
||||||
// Class to encapsulate entries in the InputServer's InputServerDevice list.
|
|
||||||
//
|
|
||||||
class InputServerDeviceListEntry
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
inline const char* getPath() { return mPath; };
|
|
||||||
inline status_t getStatus() { return mStatus; };
|
|
||||||
inline BInputServerDevice* getInputServerDevice() { return mIsd; };
|
|
||||||
|
|
||||||
InputServerDeviceListEntry(
|
|
||||||
const char* path,
|
|
||||||
status_t status,
|
|
||||||
BInputServerDevice* isd) : mPath (path),
|
|
||||||
mStatus(status),
|
|
||||||
mIsd (isd)
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
~InputServerDeviceListEntry()
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
private:
|
|
||||||
const char* mPath;
|
|
||||||
status_t mStatus;
|
|
||||||
BInputServerDevice* mIsd;
|
|
||||||
|
|
||||||
};
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
//
|
|
||||||
// Class to encapsulate entries in the InputServer's InputServerFilter list.
|
|
||||||
//
|
|
||||||
class InputServerFilterListEntry
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
inline const char* getPath() { return mPath; };
|
|
||||||
inline status_t getStatus() { return mStatus; };
|
|
||||||
inline const BInputServerFilter* getInputServerFilter() { return mIsd; };
|
|
||||||
|
|
||||||
InputServerFilterListEntry(
|
|
||||||
const char* path,
|
|
||||||
status_t status,
|
|
||||||
const BInputServerFilter* isd) : mPath (path),
|
|
||||||
mStatus(status),
|
|
||||||
mIsd (isd)
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
~InputServerFilterListEntry()
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
private:
|
|
||||||
const char* mPath;
|
|
||||||
status_t mStatus;
|
|
||||||
const BInputServerFilter* mIsd;
|
|
||||||
|
|
||||||
};
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
//
|
|
||||||
// Class to encapsulate entries in the InputServer's InputServerMethod list.
|
|
||||||
//
|
|
||||||
class InputServerMethodListEntry
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
inline const char* getPath() { return mPath; };
|
|
||||||
inline status_t getStatus() { return mStatus; };
|
|
||||||
inline const BInputServerMethod* getInputServerMethod() { return mIsm; };
|
|
||||||
|
|
||||||
InputServerMethodListEntry(
|
|
||||||
const char* path,
|
|
||||||
status_t status,
|
|
||||||
const BInputServerMethod* ism) : mPath (path),
|
|
||||||
mStatus(status),
|
|
||||||
mIsm (ism)
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
~InputServerMethodListEntry()
|
|
||||||
{ /* Do nothing */ };
|
|
||||||
|
|
||||||
private:
|
|
||||||
const char* mPath;
|
|
||||||
status_t mStatus;
|
|
||||||
const BInputServerMethod* mIsm;
|
|
||||||
|
|
||||||
};
|
|
||||||
Reference in New Issue
Block a user