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.
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#ifndef CSV_DOC_SUBVIEWFACTORY_H
|
|
#define CSV_DOC_SUBVIEWFACTORY_H
|
|
|
|
#include <map>
|
|
|
|
#include "../../model/world/universalid.hpp"
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSVDoc
|
|
{
|
|
class SubView;
|
|
|
|
class SubViewFactoryBase
|
|
{
|
|
// not implemented
|
|
SubViewFactoryBase (const SubViewFactoryBase&);
|
|
SubViewFactoryBase& operator= (const SubViewFactoryBase&);
|
|
|
|
public:
|
|
|
|
SubViewFactoryBase();
|
|
|
|
virtual ~SubViewFactoryBase();
|
|
|
|
virtual SubView *makeSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document) = 0;
|
|
///< The ownership of the returned sub view is not transferred.
|
|
};
|
|
|
|
class SubViewFactoryManager
|
|
{
|
|
std::map<CSMWorld::UniversalId::Type, SubViewFactoryBase *> mSubViewFactories;
|
|
|
|
// not implemented
|
|
SubViewFactoryManager (const SubViewFactoryManager&);
|
|
SubViewFactoryManager& operator= (const SubViewFactoryManager&);
|
|
|
|
public:
|
|
|
|
SubViewFactoryManager();
|
|
|
|
~SubViewFactoryManager();
|
|
|
|
void add (const CSMWorld::UniversalId::Type& id, SubViewFactoryBase *factory);
|
|
///< The ownership of \a factory is transferred to this.
|
|
|
|
SubView *makeSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
|
///< The ownership of the returned sub view is not transferred.
|
|
};
|
|
}
|
|
|
|
#endif
|