2011-04-04 11:16:56 +02:00
|
|
|
|
|
|
|
#include "journal.hpp"
|
|
|
|
|
2011-04-04 11:23:15 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2011-04-04 11:16:56 +02:00
|
|
|
namespace MWDialogue
|
|
|
|
{
|
2011-04-04 11:23:15 +02:00
|
|
|
Journal::Journal (MWWorld::Environment& environment)
|
2011-04-04 11:16:56 +02:00
|
|
|
: mEnvironment (environment)
|
|
|
|
{}
|
|
|
|
|
2011-04-04 11:23:15 +02:00
|
|
|
void Journal::addEntry (const std::string& id, int index)
|
|
|
|
{
|
|
|
|
std::cout << "journal: " << id << " at " << index << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Journal::setJournalIndex (const std::string& id, int index)
|
|
|
|
{
|
|
|
|
std::cout << "journal (no entry): " << id << " at " << index << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Journal::getJournalIndex (const std::string& id) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-04-04 11:16:56 +02:00
|
|
|
}
|