openmw-tes3coop/apps/openmw/mwgui/dialoguehistory.hpp

25 lines
437 B
C++
Raw Normal View History

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