X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fstlplus%2Fpersistence%2Fpersistent_float.hpp;fp=src%2Fstlplus%2Fpersistence%2Fpersistent_float.hpp;h=0000000000000000000000000000000000000000;hb=5846afb00833cc72fe72422ca896d2387c712cb4;hp=4a01e301b7223b927612d7241a83d961d0d4f934;hpb=a97500609dc3c1b11f9786d32bc458eb00de4c36;p=chaz%2Fyoink diff --git a/src/stlplus/persistence/persistent_float.hpp b/src/stlplus/persistence/persistent_float.hpp deleted file mode 100644 index 4a01e30..0000000 --- a/src/stlplus/persistence/persistent_float.hpp +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef STLPLUS_PERSISTENT_FLOAT -#define STLPLUS_PERSISTENT_FLOAT -//////////////////////////////////////////////////////////////////////////////// - -// Author: Andy Rushton -// Copyright: (c) Southampton University 1999-2004 -// (c) Andy Rushton 2004-2009 -// License: BSD License, see ../docs/license.html - -// Persistence of floating-point types - -// Note: despite years and years of IEEE standardisation, not all -// architectures use IEEE-standard representations of floating-point numbers. -// Therefore a binary dump is not necessarily portable between platforms. -// Solving this is (currently) beyond the scope of the STLplus project. - -// If you want to be strictly portable to all platforms, do not dump/restore float - -//////////////////////////////////////////////////////////////////////////////// -#include "persistence_fixes.hpp" -#include "persistent_contexts.hpp" - -//////////////////////////////////////////////////////////////////////////////// - -namespace stlplus -{ - - void dump_float(dump_context&, const float& data) throw(persistent_dump_failed); - void restore_float(restore_context&, float& data) throw(persistent_restore_failed); - - void dump_double(dump_context&, const double& data) throw(persistent_dump_failed); - void restore_double(restore_context&, double& data) throw(persistent_restore_failed); - -} // end namespace stlplus - - //////////////////////////////////////////////////////////////////////////////// -#endif