|
Revision 135, 386 bytes
(checked in by athomas, 4 years ago)
|
Initial import.
|
| Line | |
|---|
| 1 |
#ifndef CRASH_${UCLASSNAME} |
|---|
| 2 |
#define CRASH_${UCLASSNAME} |
|---|
| 3 |
|
|---|
| 4 |
#include <crash/Exception.h> |
|---|
| 5 |
#include <crash/noncopyable.h> |
|---|
| 6 |
|
|---|
| 7 |
namespace crash { |
|---|
| 8 |
|
|---|
| 9 |
/* |
|---|
| 10 |
${DATE} Created |
|---|
| 11 |
*/ |
|---|
| 12 |
|
|---|
| 13 |
/** |
|---|
| 14 |
${CLASSNAME} is ... |
|---|
| 15 |
*/ |
|---|
| 16 |
class ${CLASSNAME} : private noncopyable { |
|---|
| 17 |
public : |
|---|
| 18 |
SUBCLASS_DEFAULT_EXCEPTION |
|---|
| 19 |
|
|---|
| 20 |
explicit ${CLASSNAME}(); |
|---|
| 21 |
~${CLASSNAME}(); |
|---|
| 22 |
|
|---|
| 23 |
private : |
|---|
| 24 |
// Methods and data members |
|---|
| 25 |
}; |
|---|
| 26 |
|
|---|
| 27 |
} // namespace |
|---|
| 28 |
#endif |
|---|