forked from mirror/openmw-tes3mp
24 lines
424 B
C++
24 lines
424 B
C++
|
#ifndef CSV_WORLD_DIALOGUESUBVIEW_H
|
||
|
#define CSV_WORLD_DIALOGUESUBVIEW_H
|
||
|
|
||
|
#include "../doc/subview.hpp"
|
||
|
|
||
|
namespace CSMDoc
|
||
|
{
|
||
|
class Document;
|
||
|
}
|
||
|
|
||
|
namespace CSVWorld
|
||
|
{
|
||
|
class DialogueSubView : public CSVDoc::SubView
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
|
||
|
DialogueSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document, bool createAndDelete);
|
||
|
|
||
|
virtual void setEditLock (bool locked);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|