RaftLib  0.3a
C++ Stream Processing Template Library
typecheck.hpp
1 
20 #ifndef _TYPECHECK_HPP_
21 #define _TYPECHECK_HPP_ 1
22 #include <cstddef>
23 
24 class typecheck {
25 public:
26 
27  virtual bool
28  is_compatible( const typecheck &other ) = 0;
29 
30  virtual std::size_t
31  type_size() = 0;
32 
33 };
34 #endif /* END _TYPECHECK_HPP_ */
Definition: typecheck.hpp:24