SEP Solver Library  1.0
 All Classes Namespaces Files Functions Variables Typedefs Macros
handleIO.h
Go to the documentation of this file.
1 #ifndef HANDLEIO_H
2 #define HANDLEIO_H 1
3  #include "except.h"
4 #include <iostream>
5 #include <cstdlib>
6 #include <sstream>
7 namespace SEP{
8 
9 
10 
11  class Writeable {
12 
13  public:
14 
15  };
16 
17 
18  }
19 #endif
20  /*
21  virtual std::ostream & write(std::ostream & str) const {;}
22 
23  void write(SEPException & e) const {
24  std::ostringstream ss;
25  this->write(ss);
26  e<<ss.str();
27  }
28 */