From 6d5bdc6eb27664a58c3dd593faed34e0ca05dcc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 29 Aug 2004 16:43:53 +0000 Subject: [PATCH] removed unused files git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8716 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../input/InputServerDeviceListEntry.h | 27 ------------------- .../input/InputServerFilterListEntry.h | 27 ------------------- .../input/InputServerMethodListEntry.h | 27 ------------------- 3 files changed, 81 deletions(-) delete mode 100644 src/servers/input/InputServerDeviceListEntry.h delete mode 100644 src/servers/input/InputServerFilterListEntry.h delete mode 100644 src/servers/input/InputServerMethodListEntry.h diff --git a/src/servers/input/InputServerDeviceListEntry.h b/src/servers/input/InputServerDeviceListEntry.h deleted file mode 100644 index 52918e12de..0000000000 --- a/src/servers/input/InputServerDeviceListEntry.h +++ /dev/null @@ -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; - -}; diff --git a/src/servers/input/InputServerFilterListEntry.h b/src/servers/input/InputServerFilterListEntry.h deleted file mode 100644 index 6bf90b9dc6..0000000000 --- a/src/servers/input/InputServerFilterListEntry.h +++ /dev/null @@ -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; - -}; diff --git a/src/servers/input/InputServerMethodListEntry.h b/src/servers/input/InputServerMethodListEntry.h deleted file mode 100644 index dbbade0bb4..0000000000 --- a/src/servers/input/InputServerMethodListEntry.h +++ /dev/null @@ -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; - -};