27
27
///////////////////////////////////////////////////////////////////////////////
28
28
// Makros / Defines
29
29
#if defined _WIN32 && defined _DEBUG && defined _MSC_VER
30
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
32
static char THIS_FILE[] = __FILE__;
30
#define new new(_NORMAL_BLOCK, THIS_FILE, __LINE__)
32
static char THIS_FILE[] = __FILE__;
35
35
///////////////////////////////////////////////////////////////////////////////
37
37
* Konstruktor von @p glArchivItem_Sound.
41
41
glArchivItem_Sound::glArchivItem_Sound(void)
42
: baseArchivItem_Sound(), sound(NULL)
42
: baseArchivItem_Sound(), sound(NULL)
46
46
///////////////////////////////////////////////////////////////////////////////
48
48
* Kopiekonstruktor von @p glArchivItem_Sound.
52
glArchivItem_Sound::glArchivItem_Sound(const glArchivItem_Sound *item)
53
: baseArchivItem_Sound(item), sound(NULL)
52
glArchivItem_Sound::glArchivItem_Sound(const glArchivItem_Sound* item)
53
: baseArchivItem_Sound(item), sound(NULL)
57
57
///////////////////////////////////////////////////////////////////////////////
59
59
* Destruktor von @p glArchivItem_Sound.