empty.hh
Go to the documentation of this file.
1 /**
2  * \file Empty_Class_Name.hh
3  *
4  * \ingroup Working_Package
5  *
6  * \brief Class def header for a class Empty_Class_Name
7  *
8  * @author USER_NAME
9  */
10 
11 /** \addtogroup Working_Package
12 
13  @{*/
14 #ifndef EMPTY_CLASS_NAME_HH
15 #define EMPTY_CLASS_NAME_HH
16 
17 #include <iostream>
18 
19 /**
20  \class Empty_Class_Name
21  User defined class Empty_Class_Name ... these comments are used to generate
22  doxygen documentation!
23  */
24 class Empty_Class_Name{
25 
26 public:
27 
28  /// Default constructor
30 
31  /// Default destructor
33 
34 };
35 
36 #endif
37 /** @} */ // end of doxygen group
~Empty_Class_Name()
Default destructor.
Definition: empty.hh:32
Empty_Class_Name()
Default constructor.
Definition: empty.hh:29