Tagged Questions

1
vote
2answers
177 views

Virtual inheritance - gcc vs. vc++

Hi all! I have a problem with Visual Studio 2008 concerning virtual inheritance. Consider the following example: #include<iostream> class Print { public: Print (const char * name) { …
1
vote
3answers
67 views

virtual method not seen in implementation

Hi, i am currently working on a C++ project where i have an abstract interface that is implemented later on. The interface also has a implemented method which my implementation doesn't override. My …
4
votes
5answers
291 views

final class in c++

class Temp { private: ~Temp() {} friend class Final; }; class Final : virtual public Temp { public: void fun() { cout<<"In base"; } }; class Derived : public …
4
votes
5answers
599 views

C++ Multiple Virtual Inheritance vs. COM

Hi! The net is overflowing with explanations of the "dreaded diamond problem". So is StackOverflow. I think I understand that bit, but I fail to translate that knowledge into comprehending something …
2
votes
2answers
125 views

Asymetric virtual Inheritence diamond in C++

So I have this idea and I think it's basically impossible to implement in C++... but I want to ask. I read through chapter 15 of Stroustrup and didn't get my answer, and I don't think the billion …
4
votes
4answers
305 views

Are different compilers’ C++ virtual inheritance implementations incompatible?

I have hierarchy of public interfaces like this: struct ISwitchable { /* Obtain pointer to another implemented interface of the same instance. */ virtual int switch(unsigned int …
1
vote
1answer
229 views

Overridden virtual function not called…

I have a strange problem in my project. I have a class that inherits from a base class (which again inherits from another base class) and overrides a function. However, when that function is called it …