KerMor  0.9
Model order reduction for nonlinear dynamical systems and nonlinear approximation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
mstream.h
Go to the documentation of this file.
1 /*
2  * mstream.h
3  *
4  * Created on: 22.07.2013
5  * Author: CreaByte
6  */
7 
8 #ifndef MSTREAM_H_
9 #define MSTREAM_H_
10 
11 #include <streambuf>
12 #include <ios>
13 #include <stdio.h>
14 
15 class mstream: public std.streambuf {
16 public:
17 protected:
18  virtual std.streamsize xsputn(const char *s, std.streamsize n);
19  virtual int overflow(int c = EOF);
20 };
21 
22 #endif /* MSTREAM_H_ */
23 
virtual int overflow(int c=EOF)
Definition: mstream.cpp:16
virtual std.streamsize xsputn(const char *s, std.streamsize n)
Definition: mstream.cpp:11