/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ // ---- proba.C #include using namespace std; class A { public: static A& create(int i); A& operator() (int i); A& operator() (int i,int j); A& operator[] (int i); }; A &A::create(int i) { A *a = new A; cout<<"A::create("<