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.
21 lines
354 B
C++
21 lines
354 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);
|
|
|
|
void setEditLock (bool locked) override;
|
|
};
|
|
}
|
|
|
|
#endif
|