Scine::Readuct  6.0.0
This is the SCINE module ReaDuct.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages
BinaryArrayIO.h
Go to the documentation of this file.
1 
8 #ifndef READUCT_ELEMENTARYSTEPOPTIMIZATION_BINARYARRAYIO_H
9 #define READUCT_ELEMENTARYSTEPOPTIMIZATION_BINARYARRAYIO_H
10 
11 #include <istream>
12 #include <ostream>
13 #include <vector>
14 
15 // TODO: Improve documentation
16 
17 namespace Scine {
18 namespace Readuct {
19 
20 namespace ElementaryStepOptimization {
21 
26  public:
27  static std::vector<double> readDoubles(std::istream& in);
28 
29  static void writeDoubles(std::ostream& out, const std::vector<double>& v);
30 
31  private:
32 };
33 
34 } // namespace ElementaryStepOptimization
35 } // namespace Readuct
36 } // namespace Scine
37 
38 #endif // CPPUTIL_BINARYARRAYIO_H