codac  1.5.7
codac_serialize_intervals.h
Go to the documentation of this file.
1 
12 #ifndef __CODAC_SERIALIZ_INTERVALS_H__
13 #define __CODAC_SERIALIZ_INTERVALS_H__
14 
15 #include <fstream>
16 #include "codac_Interval.h"
17 #include "codac_IntervalVector.h"
18 
19 namespace codac
20 {
23 
40  void serialize_Interval(std::ofstream& bin_file, const Interval& intv);
41 
50  void deserialize_Interval(std::ifstream& bin_file, Interval& intv);
51 
55 
68  void deserialize_IntervalVector(std::ifstream& bin_file, IntervalVector& box);
69 
78  void serialize_IntervalVector(std::ofstream& bin_file, const IntervalVector& box);
79 
81 }
82 
83 #endif
FixPoint of a separator The fixpoint of a separator is computed by calling the "::"separate function ...
Definition: codac_capd_helpers.h:9
void serialize_IntervalVector(std::ofstream &bin_file, const IntervalVector &box)
Creates an IntervalVector object from a binary file.
void serialize_Interval(std::ofstream &bin_file, const Interval &intv)
Writes an Interval object into a binary file.
void deserialize_Interval(std::ifstream &bin_file, Interval &intv)
Creates an Interval object from a binary file.
void deserialize_IntervalVector(std::ifstream &bin_file, IntervalVector &box)
Writes an IntervalVector object into a binary file.