QNANO
Has_Print.h
1 #ifndef QNANO_NEW_HAS_PRINT_DEFINED_H
2 #define QNANO_NEW_HAS_PRINT_DEFINED_H
3 #include <ostream>
4 
5 
7 class Has_Print{
8 public:
9  virtual void print(std::ostream &ofs)const=0;
10 };
11 
12 
13 #endif
Interface for classes that have a "print" function.
Definition: Has_Print.h:7