mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
23 lines
351 B
C
23 lines
351 B
C
// vi: noexpandtab:tabstop=4
|
|
|
|
#ifndef _ADT_ADT_h
|
|
#define _ADT_ADT_h
|
|
|
|
#ifdef flagNONAMESPACE
|
|
#define NAMESPACE_ADT
|
|
#define END_ADT_NAMESPACE
|
|
#define ADT
|
|
#else
|
|
#define NAMESPACE_ADT namespace adt {
|
|
#define END_ADT_NAMESPACE }
|
|
#define ADT adt
|
|
#endif
|
|
|
|
NAMESPACE_ADT
|
|
|
|
#include "List.h"
|
|
|
|
END_ADT_NAMESPACE
|
|
|
|
|
|
#endif
|