I have an ordinary abstract class that has a couple of pure virtual methods. The class itself is a part of the shared library. The compilation of the shared library itself is OK. But when the library is linked to another program that has another class deriving from the abstract one in the shared library and defining the pure virtual methods, I get the following linker error.

I compile like this..:

g++ -I../path/to/the/library main.cpp derived.cpp -L../path/to/the/library -lsomename -o shared 

The linker error is:

libsomename.so: undefined reference to `AbstractClass::method()'

It's like the abstract class cannot access its pure virtual methods, but I do not try to make any instance of the abstract class anywhere in the library.

What could be the problem?

link|improve this question

60% accept rate
feedback

2 Answers

When defining abstract classes you have to make all functions virtual and also end with =0 i.e:

class DPReporterI
{
public:
    virtual uint32 getProviderCount()=0;
    virtual uint32 getProviderId(uint32 index)=0;

    virtual uint32 getLastRate(uint32 id)=0;
    virtual void getName(uint32 id, char* buff, uint32 size)=0;
};

Make sure you do this and it should work.

link|improve this answer
everything done that way from the very beginning... – JTom Apr 19 '10 at 7:11
1  
can you post the code thats giving you the error than please. – Lodle Apr 19 '10 at 8:50
feedback

You might be using the wrong name for your library, I've got a similar problem once. But since this is 2 years old, I guess you've found the problem. Maybe you could give us the right answer?


@Lodle

When defining abstract classes you have to make all functions virtual and also end with =0

I'm not sure if it is supposed to be defined like this in a library, but in any other cases, you DO NOT need to define all functions pure virtual like you say.

EDIT: You just need at least ONE pure virtual to have your class defined as Abstract.

See this: Pure virtual functions, abstract base classes, and interface classes

link|improve this answer
I said that all function must be virtual but that wasn't correct either. Just one pure virtual and then you got an Abstract class! – DawnUser Feb 23 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.