Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 VAX 1534: VAView - inheritance error

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
Uniwares Posted - Sep 15 2006 : 7:31:04 PM
The following construct leads VAView to display the common base class BaseData as direct base class of CommonData.
class BaseData 
{
public: 
  BaseData() {}
};
class DerivedData1 : public BaseData
{
public:
  DerivedData1() {}
};
class DerivedData2 : public BaseData
{
public:
  DerivedData2() {}
};

class CommonData: public DerivedData1, protected DerivedData2
{
}
2   L A T E S T    R E P L I E S    (Newest First)
feline Posted - Oct 09 2006 : 6:12:04 PM
apologies for the delay, i am starting to catch up on my backlog.

the fist post is:

case=2918

deriving from the OVERLAPPED struct is

case=2920
Uniwares Posted - Sep 15 2006 : 7:37:28 PM
Also: deriving a class from the struct OVERLAPPED (win32 sdk) shows both _OVERLAPPED and OVERLAPPED as base classes.
OVERLAPPED is defined as "typedef struct _OVERLAPPED { ... } OVERLAPPED, *LPOVERLAPPED;"

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000