X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fnode.h;h=85ad5ebab382f323a0988320bcc7ad970e7a8af5;hb=f1853221eb20d3c9a8bd72d4fd16f3cea436c894;hp=aeb5da103b65fc388dccd40710762ec113b0109f;hpb=82e842447ea3effc0a57ec6d2ed088f7e882e44c;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/node.h b/synfig-core/trunk/src/synfig/node.h index aeb5da1..85ad5eb 100644 --- a/synfig-core/trunk/src/synfig/node.h +++ b/synfig-core/trunk/src/synfig/node.h @@ -40,7 +40,7 @@ // When a PasteCanvas layer has a non-zero 'time offset' parameter, should // the waypoints shown for the canvas be adjusted? This currently only // partially works - see the TODO at the end of layer_pastecanvas.cpp -// #define ADJUST_WAYPOINTS_FOR_TIME_OFFSET +#define ADJUST_WAYPOINTS_FOR_TIME_OFFSET /* === T Y P E D E F S ===================================================== */ @@ -63,6 +63,10 @@ public: { } +#ifdef _DEBUG + const char *c_str()const; +#endif + const GUID& get_guid()const { return guid; } const Time& get_time()const { return time; } Interpolation get_before()const { return before; } @@ -243,6 +247,32 @@ guid_cast(const synfig::GUID& guid) return etl::handle::cast_dynamic(synfig::find_node(guid)); } +#ifdef _DEBUG +template +synfig::String set_string(T start, T end) +{ + synfig::String ret("["); + bool started = false; + + while (start != end) + { + if (started) ret += ", "; + else started = true; + + ret += synfig::String((*start).c_str()); + start++; + } + + return ret + "]"; +} + +template +synfig::String set_string(T set) +{ + return set_string(set.begin(), set.end()); +} +#endif // _DEBUG + typedef etl::handle NodeHandle; }; // END of namespace synfig