mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-05 15:40:10 +00:00
25 lines
437 B
C++
25 lines
437 B
C++
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
|
|
|
#include "keywordsearch.hpp"
|
|
|
|
#include <platform/stdint.h>
|
|
|
|
namespace MWGui
|
|
{
|
|
class DialogueHistoryViewModel
|
|
{
|
|
public:
|
|
DialogueHistoryViewModel();
|
|
|
|
private:
|
|
typedef KeywordSearch <std::string, intptr_t> KeywordSearchT;
|
|
|
|
mutable bool mKeywordSearchLoaded;
|
|
mutable KeywordSearchT mKeywordSearch;
|
|
|
|
};
|
|
}
|
|
#endif
|
|
|