|
-
August 31st, 2009, 06:22 AM
#1
Static library using virtual methods
Hi,
I'm trying to create a static lib.
This lib needs to read/write to a db, but the library has no information about db (type, pass, etc).
The idea is to create an interface that the library client will fill to provide to the library DB stuff.
------------------------- class IDBProvider --------------------------------------
#include "IDBResult.h"
using std::string;
class IDBProvider{
public:
virtual IDBResult * executeSQLCommand(string command);
};
------------------------- class IDBResult --------------------------------------
class IDBResult{
public:
/**
* Retrieves the value of the designated column in the current row of this object
* as a long.
*/
virtual long getLong(string columnLabel);
/**
* Retrieves the value of the designated column in the current row of this object
* as a int.
*/
virtual int getInt(string columnLabel);
};
----------------------------- staticLibImplementation.h ----------------------
#include #include "IDBProvider.h"
bool doLibraryStuff(long *result, IDBProvider db);
----------------------------- staticLibImplementation.cpp ----------------------
bool doLibraryStuff(long *result, IDBProvider db){
db.executeSQLCommand("A_QUERY_TO_DB");
}
I'm creating the library as follows :
g++ -Wall -g -c -o libDB.o staticLibImplementation.cpp
ar rcs libDB.a libDB.o
It compiles ok, but if I do a "nm libDB.a" I can see that:
U _ZN11IDBProvider17executeSQLCommandESs
So IDBProvider::executeSQLCommand is undefined.
Then , if I try to compile a test that uses libDB.a, at linking phase complains about unreferenced symbols.
The qüestion is: Can I create different interfaces like this and use it in a static lib? I'm new in c++ (I come from java) and I don't really don't know about this. How I should compile it?
Thanks in advance.
-
August 31st, 2009, 06:32 AM
#2
Re: Static library using virtual methods
To create a pure virtual function:
Code:
virtual int getInt(string columnLabel) = 0;
Please use code tags.
-
August 31st, 2009, 06:49 AM
#3
Re: Static library using virtual methods
But If I use pure virtual, when I try to compile the lib source , the compiler complains about declaring the type "IDBProvider" inside the method:
bool doLibraryStuff(long *result, IDBProvider db);
The compiler output is : (its a translation, I don't have it in english)
The parameter db can not be declared as a abstract type IDBProvider.
-
August 31st, 2009, 05:27 PM
#4
Re: Static library using virtual methods
So then IDBProvider is an abstract type - you either made it inherit from a class with a pure virtual function and did not override it, or you gave it a pure virtual function directly. Your options are to either make the db parameter a pointer or reference (or a smart pointer).
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|