Tagged Questions
9
votes
3answers
87 views
How to detect and assert virtual inheritance for a specific class?
I have a C++ class that implements reference-counting and I want all users of this class to inherit from this class only virtually so that no object ends up with more than one reference counter.
I'd ...
6
votes
1answer
147 views
C++, ambiguous inheritance error in vs 2010
I have some troubles with the application of polymorphism in this example. This question is similar to my last question
C++, virtual inheritance, strange abstract class + clone problem
There are 3 ...
4
votes
2answers
622 views
Virtual inheritance - gcc vs. vc++
I have a problem with Visual Studio 2008 concerning virtual inheritance.
Consider the following example:
#include<iostream>
class Print {
public:
Print (const char * name) {
...
4
votes
4answers
737 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 ...