| Index: src/plugin/PluginDictionary.h |
| =================================================================== |
| deleted file mode 100644 |
| --- a/src/plugin/PluginDictionary.h |
| +++ /dev/null |
| @@ -1,41 +0,0 @@ |
| -#ifndef _DICTIONARY_H |
| -#define _DICTIONARY_H |
| - |
| - |
| -#include "PluginIniFileW.h" |
| -#include "PluginChecksum.h" |
| - |
| - |
| -class CPluginDictionary |
| -{ |
| - |
| -private: |
| - |
| - static CPluginDictionary* s_instance; |
| - |
| - static CComAutoCriticalSection s_criticalSectionDictionary; |
| - |
| - CPluginIniFileW::TSectionData m_dictionary; |
| - CString m_dictionaryLanguage; |
| - std::map<CString,CString> m_dictionaryConversions; |
| - |
| - // private constructor used by the singleton pattern |
| - CPluginDictionary(bool forceCreate=false); |
| - |
| -public: |
| - |
| - ~CPluginDictionary(); |
| - |
| - // Returns an instance of the Dictionary |
| - static CPluginDictionary* GetInstance(bool forceCreate=false); |
| - |
| - void Create(bool forceCreate=false); |
| - |
| - // Initializes the Dictionary. Should be called before any thing else |
| - void SetLanguage(const CString& lang); |
| - bool IsLanguageSupported(const CString& lang); |
| - |
| - CString Lookup(const CString& key); |
| -}; |
| - |
| -#endif |