/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include #include #include #include #include #include //#include //#include using namespace std; class A { public: vector x; list y; string z; deque b; map a; //map a; //bitset<8> c; //set d; }; // Example of container container class fvector : public vector { }; // Trick to make cint happy vector xxx; // vector > xxx; // Limitation, this does not work #ifdef __MAKECINT__ #pragma link C++ nestedtypedefs; #pragma link C++ nestedclasses; #pragma link C++ function reverse(deque::iterator,deque::iterator); #endif