Tagged Questions

110
votes
9answers
76k views

How do you declare an interface in C++?

How do I setup a class that represents an interface? Is this just an abstract base class?
8
votes
5answers
203 views

Pure virtual destructor definition inside class gives compilation error

The pure virtual destructor in base class should have a definition. Otherwise compiler will generate a call to base class destructor from the derived class destructor during link-time and will cause a ...
8
votes
5answers
691 views

C++ template duck-typing vs pure virtual base class inheritance

Which are the guidelines for choosing between template duck-typing and pure virtual base class inheritance? Examples: // templates class duck { void sing() { std::cout << "quack\n"; } }; ...
6
votes
7answers
1k views

Deriving an abstract class from concrete class

Let's say we have a concrete class Apple. (Apple objects can be instantiated.) Now, someone comes and derives an abstract class Peach from Apple. It's abstract because it introduces a new pure virtual ...
4
votes
4answers
432 views

C++ - calling derived function from abstract base pointer

I have been trying to create a TCP Server model based on inheritance, with varying success. These servers are managed by a singleton whose task it is to shut these servers down and other simple ...
3
votes
3answers
147 views

C++ help with pure virtual methods

Consider this demo program: #include <stdio.h> class Base { public: virtual int f(int) =0; virtual int f(){ return f(0); } virtual ~Base(){ } }; class Derived : public Base { ...
2
votes
4answers
154 views

C++, diamond inheritance, where/when do pure virtuals need to be implemented?

C++: I have a base class A with a pure virtual function f() and then two classes B and C inherit virtually from A, and a class D that inherits from both B and C (the typical diamond structure): A ...
2
votes
5answers
131 views

Why pure virtual mechanism doesn't consider inherited functions?

Before asking, I had refer to this older question. But I have still queries. struct B1 { virtual void fun () = 0; }; struct B2 { void fun () { cout<<"B2::fun()\n"; } void fun (int i) {} ...
2
votes
2answers
825 views

C++'s pure virtual function implementation and header files

I'm having some trouble implementing pure virtual functions inherited from some abstract class, when the classes in question are divided into *.h and *.cpp files. The compiler (g++) tells me that the ...
2
votes
1answer
91 views

“import” a definition of a function from a base class to implement abstract interface (multiple inheritance in C++)

Say we have a class inheriting from two base classes (multiple inheritance). Base class A is abstract, declaring a pure virtual function foo, the other base class B declares and implements a function ...
2
votes
7answers
5k views

Pure Virtual Method Called

EDIT: SOLVED I'm working on a multi-threaded project right now where I have a base worker class, with varying worker classes that inherit from it. At runtime, the worker classes become threads, which ...
0
votes
0answers
20 views

glut function call from class, driving me crazy

I am trying to make a wrapper class for glut to simplify my code. I want to use the specialKeyHandler to determine an action, but I don't want to specify that action within this class, and I want to ...
0
votes
4answers
133 views

Sub-classing templated class without implementing pure virtual method

I have the following class definition: template<typename QueueItemT> class QueueBC { protected: QueueBC() {} virtual ~QueueBC() {} private: virtual IItemBuf* constructItem(const ...
-2
votes
6answers
61 views

How to call a overrided virtual function from a base class function?

I just realized that I simplified the code too much and that it does not reflect my real problem. I apologize for not being more specific. What I actually tries to do is the following: online Demo: ...