Horizon
Loading...
Searching...
No Matches
export.hpp
1#pragma once
2#include <gtkmm.h>
3#include "rules/rules_import_export.hpp"
4#include "rules/rule.hpp"
5
6namespace horizon {
7class RuleExportDialog : public Gtk::Dialog {
8public:
10
11 std::string get_filename() const;
12 RulesExportInfo get_export_info() const;
13
14private:
15 class RuleExportBox *box = nullptr;
16};
17} // namespace horizon
Definition export.cpp:8
Definition export.hpp:7
Definition rules_import_export.hpp:18