DoxyBugs  1
Derived.h
Go to the documentation of this file.
1 //================================================================================
2 // Copyright (C) NAB 2010
3 //================================================================================
4 
6 
7 #if !defined Derived_h
8 #define Derived_h
9 
10 #include "Base.h"
11 
13  class Derived: public Base
14  {
15  public:
16 
17  void method();
18 
19  protected:
20 
21  private:
22 
23  };
24 
25 #endif // Derived_h
26 
27 //================================================================================
28 // Copyright (C) NAB 2010
29 //================================================================================