00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef INCLUDE_BASE_SLIST_H
00017 #define INCLUDE_BASE_SLIST_H
00018
00019 #include "config.h"
00020
00021 #ifdef HAVE_SLIST
00022 # include <slist>
00023 #else
00024 # ifdef HAVE_EXT_SLIST
00025 # include <ext/slist>
00026 # else
00027 # include <list>
00028 # define slist list
00029 # endif
00030 #endif
00031
00032 #ifdef CXX_SLIST_NAMESPACE
00033 namespace std
00034 {
00035 using CXX_SLIST_NAMESPACE::slist;
00036 }
00037 #endif
00038
00039 #endif // INCLUDE_BASE_SLIST_H