2013-04-10 04:32:05 +00:00
|
|
|
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
2013-04-11 04:21:56 +00:00
|
|
|
|
2013-05-04 12:15:47 +00:00
|
|
|
#include "keywordsearch.hpp"
|
|
|
|
|
|
|
|
#include <platform/stdint.h>
|
2013-04-10 04:32:05 +00:00
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
2013-05-04 12:15:47 +00:00
|
|
|
class DialogueHistoryViewModel
|
2013-04-10 04:32:05 +00:00
|
|
|
{
|
2013-05-04 12:15:47 +00:00
|
|
|
public:
|
|
|
|
DialogueHistoryViewModel();
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef KeywordSearch <std::string, intptr_t> KeywordSearchT;
|
|
|
|
|
|
|
|
mutable bool mKeywordSearchLoaded;
|
|
|
|
mutable KeywordSearchT mKeywordSearch;
|
|
|
|
|
2013-04-10 04:32:05 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|