/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include #if defined(interp) && defined(makecint) #pragma include "test.dll" #else #include "t1030.h" #endif using namespace Experiment1; int main() { Experiment1::TExperimentalDataNode a; Experiment1::TExperimentalData b1; Experiment1::TExperimentalData b2; std::vector c; std::vector > d; std::vector > > e; std::map f; std::map > g; std::map > > h; #if 0 std::map > > > i; #endif c.push_back(b1); c.push_back(b2); d.push_back(c); e.push_back(d); f["b1"]=b1; f["b2"]=b2; g["c"]=c; h["d"]=d; #if 0 i["e"]=e; #endif f["b1"]; f["b2"]; g["c"]; h["d"]; #if 0 i["e"]; #endif printf("Success\n"); return 0; }