aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/serializer/non-validating/double.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-10 11:22:34 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-10 11:22:34 +0200
commit587804df04ba83c1fc18671dcdd9927c41820f0a (patch)
treedd709ac7ac36ea37f7f524a7128f7b0d9a6f842f /libxsde/xsde/cxx/serializer/non-validating/double.hxx
parent9d45c2a295513066b2d8d602b0ef3e92ebfed5ed (diff)
Move inline c-tors after non-inline functions to help VxWorks 5.x
Diffstat (limited to 'libxsde/xsde/cxx/serializer/non-validating/double.hxx')
-rw-r--r--libxsde/xsde/cxx/serializer/non-validating/double.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/libxsde/xsde/cxx/serializer/non-validating/double.hxx b/libxsde/xsde/cxx/serializer/non-validating/double.hxx
index 601628d..f88ca64 100644
--- a/libxsde/xsde/cxx/serializer/non-validating/double.hxx
+++ b/libxsde/xsde/cxx/serializer/non-validating/double.hxx
@@ -24,6 +24,12 @@ namespace xsde
struct double_simpl: double_sskel
#endif
{
+ virtual void
+ pre (double);
+
+ virtual void
+ _serialize_content ();
+
enum notation
{
notation_auto,
@@ -33,18 +39,12 @@ namespace xsde
#ifdef DBL_DIG
double_simpl (notation = notation_auto,
- unsigned int precision = DBL_DIG);
+ unsigned int precision = DBL_DIG); // Keep it last.
#else
double_simpl (notation = notation_auto,
unsigned int precision = 15)
#endif
- virtual void
- pre (double);
-
- virtual void
- _serialize_content ();
-
protected:
notation notation_;
unsigned int precision_;