mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 09:49:55 +00:00
21 lines
353 B
C++
21 lines
353 B
C++
|
#ifndef CSV_DOC_RUNLOGSUBVIEW_H
|
||
|
#define CSV_DOC_RUNLOGSUBVIEW_H
|
||
|
|
||
|
#include "subview.hpp"
|
||
|
|
||
|
namespace CSVDoc
|
||
|
{
|
||
|
class RunLogSubView : public SubView
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
RunLogSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document);
|
||
|
|
||
|
virtual void setEditLock (bool locked);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|