#include <stdio.h>
#include "host.h"
#include "serialis.h"
#include "lsterr.h"
Go to the source code of this file.
Define Documentation
Value:\
\
\
DLLSYM void CLASSNAME##_c1_zapper( \
void* link) \
{ \
delete (CLASSNAME *) link; \
} \
Definition at line 944 of file clst.h.
Value:
Definition at line 932 of file clst.h.
Value:\
extern DLLSYM void CLASSNAME##_c1_zapper( \
void* link); \
\
extern DLLSYM void* CLASSNAME##_c1_copier( \
void* old_element);
Definition at line 865 of file clst.h.
Value:\
\
\
class DLLSYM CLASSNAME##_CLIST : public CLIST \
{ \
public: \
CLASSNAME##_CLIST():CLIST() {} \
\
\
CLASSNAME##_CLIST( \
const CLASSNAME##_CLIST&) \
{ DONT_CONSTRUCT_LIST_BY_COPY.error( QUOTE_IT( CLASSNAME##_CLIST ), \
ABORT, NULL ); } \
\
void deep_clear() \
{ CLIST::internal_deep_clear( &CLASSNAME##_c1_zapper ); } \
\
void operator=( \
const CLASSNAME##_CLIST&) \
{ DONT_ASSIGN_LISTS.error( QUOTE_IT( CLASSNAME##_CLIST ), \
ABORT, NULL ); }
Definition at line 873 of file clst.h.