diff options
| author | Matthias Melcher <github@matthiasm.com> | 2025-12-06 02:50:28 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2025-12-06 02:50:28 +0100 |
| commit | b1d3ee13bd1be3fefda2be490ce773afab2ade04 (patch) | |
| tree | 84e182175cc6403dadce8c28604afd3edbe4304f /fluid/nodes/Node.h | |
| parent | 5e7ed2f6534bf8d99688e375c56f44f792bdf7bb (diff) | |
Fluid: modernize Function Node class
Diffstat (limited to 'fluid/nodes/Node.h')
| -rw-r--r-- | fluid/nodes/Node.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fluid/nodes/Node.h b/fluid/nodes/Node.h index f6fce09b4..900addc6b 100644 --- a/fluid/nodes/Node.h +++ b/fluid/nodes/Node.h @@ -22,6 +22,8 @@ #include <FL/Fl_Widget.H> #include <FL/fl_draw.H> +#include <string> + class Node; class Group_Node; class Window_Node; @@ -113,6 +115,7 @@ enum class Type { void update_visibility_flag(Node *p); void delete_all(int selected_only=0); int storestring(const char *n, const char * & p, int nostrip=0); +int storestring(const std::string& n, std::string& p, int nostrip=0); void select_all_cb(Fl_Widget *,void *); void select_none_cb(Fl_Widget *,void *); |
