mirror of https://github.com/OpenMW/openmw.git
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.
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
#ifndef CSV_DOC_SUBVIEWFACTORYIMP_H
|
|
#define CSV_DOC_SUBVIEWFACTORYIMP_H
|
|
|
|
#include "../../model/doc/document.hpp"
|
|
|
|
#include "subviewfactory.hpp"
|
|
|
|
namespace CSVDoc
|
|
{
|
|
template <class SubViewT>
|
|
class SubViewFactory : public SubViewFactoryBase
|
|
{
|
|
public:
|
|
CSVDoc::SubView* makeSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document) override;
|
|
};
|
|
|
|
template <class SubViewT>
|
|
CSVDoc::SubView* SubViewFactory<SubViewT>::makeSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document)
|
|
{
|
|
return new SubViewT(id, document);
|
|
}
|
|
|
|
template <class SubViewT, class CreatorFactoryT>
|
|
class SubViewFactoryWithCreator : public SubViewFactoryBase
|
|
{
|
|
bool mSorting;
|
|
|
|
public:
|
|
SubViewFactoryWithCreator(bool sorting = true);
|
|
|
|
CSVDoc::SubView* makeSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document) override;
|
|
};
|
|
|
|
template <class SubViewT, class CreatorFactoryT>
|
|
SubViewFactoryWithCreator<SubViewT, CreatorFactoryT>::SubViewFactoryWithCreator(bool sorting)
|
|
: mSorting(sorting)
|
|
{
|
|
}
|
|
|
|
template <class SubViewT, class CreatorFactoryT>
|
|
CSVDoc::SubView* SubViewFactoryWithCreator<SubViewT, CreatorFactoryT>::makeSubView(
|
|
const CSMWorld::UniversalId& id, CSMDoc::Document& document)
|
|
{
|
|
return new SubViewT(id, document, CreatorFactoryT(), mSorting);
|
|
}
|
|
}
|
|
|
|
#endif
|