/* === M E T H O D S ======================================================= */
+#ifdef _DEBUG
+const char *
+TimePoint::c_str()const
+{
+ return get_time().get_string().c_str();
+}
+#endif
+
void
TimePoint::absorb(const TimePoint& x)
{
{
}
+#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; }
return ceil(time)/fps;
}
+#ifdef _DEBUG
+const char *
+Time::c_str()const
+{
+ return get_string().c_str();
+}
+#endif
+
//! \writeme
bool
Time::is_valid()const
/*! \see Format */
String get_string(float fps=0, Time::Format format=FORMAT_NORMAL)const;
+#ifdef _DEBUG
+ const char *c_str()const;
+#endif
+
//! \writeme
bool is_valid()const;