forked from mirror/openmw-tes3mp
31 lines
575 B
C++
31 lines
575 B
C++
|
#ifndef CSV_WORLD_REFERENCEABLECREATOR_H
|
||
|
#define CSV_WORLD_REFERENCEABLECREATOR_H
|
||
|
|
||
|
class QComboBox;
|
||
|
|
||
|
#include "genericcreator.hpp"
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class ReferenceableCreator : public GenericCreator
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
QComboBox *mType;
|
||
|
|
||
|
private:
|
||
|
|
||
|
virtual void configureCreateCommand (CSMWorld::CreateCommand& command) const;
|
||
|
|
||
|
public:
|
||
|
|
||
|
ReferenceableCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
||
|
const CSMWorld::UniversalId& id);
|
||
|
|
||
|
virtual void reset();
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|