Glocke

Demo.hpp

Jan 8th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #ifndef DEMO_HPP
  2. #define DEMO_HPP
  3.  
  4. #include "Interfaces.hpp"
  5.  
  6. class Demo: public IDemo {
  7.  
  8.     public:
  9.         Demo();
  10.         ~Demo();
  11.         void foo();
  12.         int bar(double value);
  13.  
  14. };
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment