RE:TObjArray data members

From: Masaharu Goto (MXJ02154@nifty.ne.jp)
Date: Wed Aug 04 1999 - 23:17:31 MEST


Dear Marco,

FIrst, the TMvlTry class has to be like this, according to C++ syntax.

class TMvlTry {

public:

  TMvlTry() : fArr1(4) , fArr2(4) {}
  ~TMvlTry() {}

protected:

TObjArray fArr1;
  TObjArray fArr2;
};

Let me know what happens with this code.

Thank you
Masaharu Goto

====================================================================
Hi all,

I am experiencing a problem with TObjArray data members (in anm interpreted
class). Fortunately, it reproduces, using the follwing simple files:

TMvlTry.h:

class TMvlTry {

public:

  TMvlTry() {;}
  ~TMvlTry() {;}

protected:

TObjArray fArr1(4);
  TObjArray fArr2(4);
};



This archive was generated by hypermail 2b29 : Tue Jan 04 2000 - 00:43:37 MET