StringStreamMixin.h
Go to the documentation of this file.
1#pragma once
2
3#include <sstream>
4
5#include <Eigen/Core>
6
7namespace armarx::aron
8{
9
11 {
12 public:
14
15 protected:
16 void setStreamPrecision();
17 void setStreamPrecision(std::ostream& os);
18
19 public:
20 std::stringstream value;
21
22 protected:
23 const std::string coeffSep;
24 const Eigen::IOFormat eigenIof;
25 };
26
27} // namespace armarx::aron