You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
508 B
C++
22 lines
508 B
C++
#include "creator.hpp"
|
|
|
|
#include <stdexcept>
|
|
|
|
CSVWorld::Creator::~Creator() {}
|
|
|
|
void CSVWorld::Creator::setScope (unsigned int scope)
|
|
{
|
|
if (scope!=CSMWorld::Scope_Content)
|
|
throw std::logic_error ("Invalid scope in creator");
|
|
}
|
|
|
|
|
|
CSVWorld::CreatorFactoryBase::~CreatorFactoryBase() {}
|
|
|
|
|
|
CSVWorld::Creator *CSVWorld::NullCreatorFactory::makeCreator (CSMDoc::Document& document,
|
|
const CSMWorld::UniversalId& id) const
|
|
{
|
|
return 0;
|
|
}
|