MythTV master
treeeditor.h
Go to the documentation of this file.
1#ifndef TREEEDITOR_H
2#define TREEEDITOR_H
3
4#include "neteditorbase.h"
5
10{
11 Q_OBJECT
12
13 public:
14 explicit TreeEditor(MythScreenStack *parent, const QString &name = "TreeEditor")
15 : NetEditorBase(parent, name) {}
16
17 protected:
18 bool InsertInDB(GrabberScript *script) override; // NetEditorBase
19 bool RemoveFromDB(GrabberScript *script) override; // NetEditorBase
20 bool FindGrabberInDB(const QString &filename) override; // NetEditorBase
21 bool Matches(bool search, bool tree) override; // NetEditorBase
22};
23
24#endif /* TREEEDITOR_H */
bool FindGrabberInDB(const QString &filename) override
Definition: treeeditor.cpp:20
bool InsertInDB(GrabberScript *script) override
Definition: treeeditor.cpp:5
bool Matches(bool search, bool tree) override
Definition: treeeditor.cpp:25
TreeEditor(MythScreenStack *parent, const QString &name="TreeEditor")
Definition: treeeditor.h:14
bool RemoveFromDB(GrabberScript *script) override
Definition: treeeditor.cpp:10