Textractor_test/GUI/extensions.h

18 lines
468 B
C
Raw Normal View History

2018-07-27 13:42:21 +08:00
#ifndef EXTENSIONS_H
#define EXTENSIONS_H
#include <Windows.h>
#include <string>
#include <map>
#include <unordered_map>
#include <vector>
2018-07-27 14:16:15 +08:00
#include <QComboBox>
2018-07-27 13:42:21 +08:00
std::map<int, std::wstring> LoadExtensions();
std::wstring DispatchSentenceToExtensions(std::wstring sentence, std::unordered_map<std::string, int> miscInfo);
typedef std::wstring(*ExtensionFunction)(std::wstring, std::unordered_map<std::string, int>&);
2018-07-27 14:16:15 +08:00
extern QComboBox* ttCombo;
2018-07-27 13:42:21 +08:00
#endif // EXTENSIONS_H