#ifndef MXLIST_H #define MXLIST_H #ifndef ISLE_COMPAT #include #define LIST_T List #else #include #define LIST_T std::list #endif template class MxList : public LIST_T { public: inline MxList() : LIST_T() {} inline ~MxList() {} }; #endif // MXLIST_H