1

There is a class A which is used in two the targets. but Class A's header and implementation is different for both targets. Can I have Class A twice? one for each target? or I have to rename one of the class and then import?

Suraj
  • 71
  • 8

1 Answers1

0

You can have "ClassA" for each target with the same name if they have different implementation. You only have to check the correct target for every "ClassA" file.

oskarko
  • 3,382
  • 1
  • 26
  • 26