예제 #1
0
파일: KVRList.cpp 프로젝트: pwigg/kaliveda
void KVRList::Execute(const char *method, const char *params,
                      Int_t * error)
{
   //Redefinition of TObject::Execute method.
   //TObject::Execute is called for each object in the list in order, meaning that for each
   //object the method "method" is executed with arguments "params".
   TIter next(this);
   TObject *obj;
   while ((obj = next())) {
      obj->Execute(method, params, error);
   }
}