18 lines
468 B
C++
18 lines
468 B
C++
#ifndef EXTENSIONS_H
|
|
#define EXTENSIONS_H
|
|
|
|
#include <Windows.h>
|
|
#include <string>
|
|
#include <map>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
#include <QComboBox>
|
|
|
|
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>&);
|
|
extern QComboBox* ttCombo;
|
|
|
|
#endif // EXTENSIONS_H
|