mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#ifndef GAME_MWDIALOG_TOPIC_H
|
|
#define GAME_MWDIALOG_TOPIC_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "journalentry.hpp"
|
|
|
|
namespace MWDialogue
|
|
{
|
|
/// \brief Collection of seen responses for a topic
|
|
class Topic
|
|
{
|
|
public:
|
|
|
|
typedef std::vector<Entry> TEntryContainer;
|
|
typedef TEntryContainer::const_iterator TEntryIter;
|
|
|
|
protected:
|
|
|
|
std::string mTopic;
|
|
std::string mName;
|
|
TEntryContainer mEntries;
|
|
|
|
public:
|
|
|
|
Topic();
|
|
|
|
Topic (const std::string& topic);
|
|
|
|
virtual ~Topic();
|
|
|
|
virtual void addEntry (const JournalEntry& entry);
|
|
///< Add entry
|
|
///
|
|
/// \note Redundant entries are ignored.
|
|
|
|
virtual std::string getName () const;
|
|
|
|
TEntryIter begin() const;
|
|
///< Iterator pointing to the begin of the journal for this topic.
|
|
|
|
TEntryIter end() const;
|
|
///< Iterator pointing past the end of the journal for this topic.
|
|
|
|
JournalEntry getEntry (const std::string& infoId) const;
|
|
};
|
|
}
|
|
|
|
#endif
|