Project1Dll  100.3
ClassBDll.h
Go to the documentation of this file.
1 
2 #ifndef CLASS_B_H
3 #define CLASS_B_H
4 
5 #define THE_NAMESPACE theWonderfulNamespace
6 
7 
8 #ifndef NAMESPACE_PREPROC_VAR
9 namespace THE_NAMESPACE {
10 #endif
11 
12 
13  class Bbb
14  {
15 
16  public:
17 
18  void firstBFct();
19  virtual void secondBFct();
20 
21 
22  };
23 
24 
25 
26 
27 
28 #ifndef NAMESPACE_PREPROC_VAR
29  }
30 #endif
31 
32 #endif // !CLASS_B_H
33 
34 
35 
36 
37 
38 
void firstBFct()
Definition: ClassBDll.cpp:14
virtual void secondBFct()
Definition: ClassBDll.cpp:23
Definition: ClassBDll.cpp:6
Definition: ClassBDll.h:13