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; - -};