summaryrefslogtreecommitdiffstats
path: root/src/actions/actions-effect-data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/actions-effect-data.h')
-rw-r--r--src/actions/actions-effect-data.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/actions/actions-effect-data.h b/src/actions/actions-effect-data.h
new file mode 100644
index 0000000..e36f5d8
--- /dev/null
+++ b/src/actions/actions-effect-data.h
@@ -0,0 +1,49 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/** \file
+ *
+ * Authors:
+ * Sushant A A <sushant.co19@gmail.com>
+ *
+ * Copyright (C) 2021 Authors
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#ifndef INK_ACTIONS_EFFECT_DATA_H
+#define INK_ACTIONS_EFFECT_DATA_H
+
+#include <list>
+#include <vector>
+#include <utility>
+
+#include <glibmm/ustring.h>
+
+class InkActionEffectData
+{
+public:
+ InkActionEffectData() = default;
+
+ typedef std::tuple<std::string, std::list<Glib::ustring>, Glib::ustring> datum;
+
+ // Get Vector
+ std::vector<datum> give_all_data();
+
+ // Add Data
+ void add_data(std::string effect_id, std::list<Glib::ustring> effect_submenu_vector, Glib::ustring const &effect_name) ;
+
+private:
+ std::vector<datum> data;
+};
+
+#endif // INK_ACTIONS_EFFECT_DATA_H
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :