Book a Demo

Author Topic: Problems with forward declarations in C++ import  (Read 6423 times)

TorbenKoch

  • EA Novice
  • *
  • Posts: 11
  • Karma: +0/-0
    • View Profile
Problems with forward declarations in C++ import
« on: February 20, 2002, 08:39:04 am »
Hi,

Consider having two files like this:

Code: [Select]

class A : public SomeClass
{
...
}


and

Code: [Select]


class A; // forward declaraction

class B
{
...
}


When importing these two files into EA it works almost correct (apart from problems previously reported), but EA for some reason thinks that class B is inherited from SomeClass.