openmw-tes3coop/apps/openmw/mwgui/dialoguehistory.hpp
2013-05-04 14:15:47 +02:00

24 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