summaryrefslogtreecommitdiff
path: root/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/XSoundNotify/src/SoundNotifyDataStorage.h')
-rw-r--r--plugins/XSoundNotify/src/SoundNotifyDataStorage.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h b/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
deleted file mode 100644
index 3df9dd7eec..0000000000
--- a/plugins/XSoundNotify/src/SoundNotifyDataStorage.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef _XSN_DATA_STORAGE
-#define _XSN_DATA_STORAGE
-
-class SoundNotifyDataStorage
-{
-public:
- SoundNotifyDataStorage();
-
- void init();
- void commit();
-
- ProtocolTable &getData();
-
-protected:
- void addContact(HANDLE contact);
- std::tstring getContactId(HANDLE contact, const ModuleString &module, const ProtocolString &proto);
- void registerProtocols();
-
-private:
- ProtocolTable _protocolTable;
- ModuleConvertTable _moduleTable;
-
- typedef std::tstring (*getContactIdFunc)(HANDLE contact, const ModuleString &module);
- typedef std::unordered_map<ProtocolString, getContactIdFunc> RegisteredProtocols;
- RegisteredProtocols _registeredProtocols;
-};
-
-#endif