Glocke

Interfaces.hpp

Jan 8th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #ifndef INTERFACES_HPP
  2. #define INTERFACES_HPP
  3.  
  4. class IDemo {
  5.  
  6.     public:
  7.         int zahl;
  8.         virtual void foo() {}
  9.         virtual int bar(double value) {}
  10.  
  11. };
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment