|
4 | 4 | namespace LibTemplateCMake {
|
5 | 5 |
|
6 | 6 | /**
|
7 |
| -* \class LibTemplateCMake::aClass |
8 |
| -* \headerfile template-lib.h <TemplateLib/templatelib.h> |
9 |
| -* |
10 |
| -* \brief A class from LibTemplateCMake namespace. |
11 |
| -* |
12 |
| -* This class that does a summation. |
13 |
| -*/ |
| 7 | + * \class LibTemplateCMake::aClass |
| 8 | + * \headerfile template-lib.h <TemplateLib/templatelib.h> |
| 9 | + * |
| 10 | + * \brief A class from LibTemplateCMake namespace. |
| 11 | + * |
| 12 | + * This class that does a summation. |
| 13 | + */ |
14 | 14 | class summationClass
|
15 | 15 | {
|
16 | 16 | public:
|
17 | 17 | /**
|
18 |
| - * Constructor |
19 |
| - */ |
| 18 | + * Constructor |
| 19 | + */ |
20 | 20 | summationClass();
|
21 | 21 |
|
22 | 22 | /**
|
23 |
| - * Destructory |
24 |
| - */ |
| 23 | + * Destructor |
| 24 | + */ |
25 | 25 | virtual ~summationClass();
|
26 | 26 |
|
27 | 27 | /**
|
28 |
| - * A method that does a summation |
29 |
| - */ |
| 28 | + * A method that does a summation |
| 29 | + */ |
30 | 30 | virtual double doSomething(double op1, double op2);
|
31 | 31 | };
|
32 | 32 |
|
33 | 33 |
|
34 | 34 | /**
|
35 |
| -* \class LibTemplateCMake::anotherClass |
36 |
| -* \headerfile template-lib.h <TemplateLib/templatelib.h> |
37 |
| -* |
38 |
| -* \brief A derived class from LibTemplateCMake namespace. |
39 |
| -* |
40 |
| -* This class performs a difference. |
41 |
| -*/ |
| 35 | + * \class LibTemplateCMake::anotherClass |
| 36 | + * \headerfile template-lib.h <TemplateLib/templatelib.h> |
| 37 | + * |
| 38 | + * \brief A derived class from LibTemplateCMake namespace. |
| 39 | + * |
| 40 | + * This class performs a difference. |
| 41 | + */ |
42 | 42 | class differenceClass : public summationClass
|
43 | 43 | {
|
44 | 44 | public:
|
45 | 45 | /**
|
46 |
| - * Constructor |
47 |
| - */ |
| 46 | + * Constructor |
| 47 | + */ |
48 | 48 | differenceClass();
|
49 | 49 |
|
50 | 50 | /**
|
51 |
| - * Destructory |
52 |
| - */ |
| 51 | + * Destructor |
| 52 | + */ |
53 | 53 | virtual ~differenceClass();
|
54 | 54 |
|
55 | 55 | /**
|
56 |
| - * A method that does something |
57 |
| - */ |
| 56 | + * A method that does something |
| 57 | + */ |
58 | 58 | virtual double doSomething(double op1, double op2);
|
59 | 59 | };
|
60 | 60 |
|
|
0 commit comments