CARMA C++
Cout.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_COUT_H
2 #define SZA_UTIL_COUT_H
3 
11 #include <iostream>
12 
13 namespace sza {
14  namespace util {
15 
16  class Cout : public std::ostream {
17  public:
18 
22  Cout(std::ostream& os);
23 
27  virtual ~Cout();
28 
29  private:
30  }; // End class Cout
31 
32  } // End namespace util
33 } // End namespace sza
34 
35 
36 
37 #endif // End #ifndef SZA_UTIL_COUT_H