Book a Demo

Author Topic: C++ Inheritance private public and protected ??  (Read 2231 times)

Sorry_Beginner

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
C++ Inheritance private public and protected ??
« on: October 14, 2006, 01:46:55 am »
Hi there  ;D,

I have a class called base and want to create a new
classes by inheritance. In C++,
it is possible to do this in three ways:

class new1 : public base
class new2 : private base
class new3 : protected base.

How do I tell EA what kind of inheritance shall be used and
is it possible to show the elements from the base class
which can be used in the inherited class??

Thanks for your help in advance! ::)

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: C++ Inheritance private public and protected ?
« Reply #1 on: October 15, 2006, 03:16:41 pm »
Currently EA doesn't support setting this.  All generalizations are 'public'.