Advertisement
Guest User

cedet test 2

a guest
Mar 25th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <boost/signals2.hpp>
  2. #include <memory>
  3.  
  4. class App
  5. {
  6. public:
  7.     virtual void run (void) = 0;
  8.     virtual int quit (void) = 0;
  9.     virtual ~App () {}
  10. };
  11.  
  12. int
  13. main (void)
  14. {
  15.     App t;
  16.     t.run ();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement