Project1Dll  100.3
ClassADll.h
Go to the documentation of this file.
1 
2 #ifndef CLASS_A_H
3 #define CLASS_A_H
4 
5 
6 #include <vector>
7 #include "ClassBDll.h"
8 
10 
11 
12 
13 
16 class Aha
17  {
18 
19  public:
20  Aha(int x);
21 
22 
23 
24  protected:
25 
26  private:
27 
28  std::vector<THE_NAMESPACE::Bbb> m_aBbbArray;
29 
30  double m_x;
31 
32  };
33 
34 
35 #endif // !CLASS_A_H
36 
37 
Aha(int x)
non ascii character : é
Definition: LaClassAdll.cpp:6
non ascii character : é Class Aha description
Definition: ClassADll.h:16
double m_x
Definition: ClassADll.h:30
std::vector< THE_NAMESPACE::Bbb > m_aBbbArray
Definition: ClassADll.h:28