14 lines
180 B
C++
Executable File
14 lines
180 B
C++
Executable File
#ifndef ERRORCODES_H__
|
|
#define ERRORCODES_H__
|
|
|
|
namespace ErrorCodes {
|
|
|
|
enum Enum {
|
|
Unknown,
|
|
ContainerRefStillExistsAfterDestruction
|
|
};
|
|
|
|
}
|
|
|
|
#endif /*ERRORCODES_H__*/
|