2018-07-26 22:42:21 -07:00
|
|
|
#ifndef EXTENSIONS_H
|
|
|
|
#define EXTENSIONS_H
|
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <vector>
|
2018-07-26 23:16:15 -07:00
|
|
|
#include <QComboBox>
|
2018-07-26 22:42:21 -07: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-26 23:16:15 -07:00
|
|
|
extern QComboBox* ttCombo;
|
2018-07-26 22:42:21 -07:00
|
|
|
|
|
|
|
#endif // EXTENSIONS_H
|