Textractor/GUI/extensions.h

18 lines
456 B
C
Raw Normal View History

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
2018-07-28 12:41:21 -07:00
std::map<int, QString> LoadExtensions();
2018-07-26 22:42:21 -07:00
std::wstring DispatchSentenceToExtensions(std::wstring sentence, std::unordered_map<std::string, int> miscInfo);
2018-07-28 12:41:21 -07:00
typedef void(*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