#ifndef EXTENSIONS_H #define EXTENSIONS_H #include #include #include #include #include #include std::map LoadExtensions(); std::wstring DispatchSentenceToExtensions(std::wstring sentence, std::unordered_map miscInfo); struct InfoForExtension { char* propertyName; int propertyValue; InfoForExtension* nextProperty; }; typedef const wchar_t*(*ExtensionFunction)(const wchar_t*, const InfoForExtension*); extern QComboBox* ttCombo; #endif // EXTENSIONS_H