|
Posted by Markus Demetz on 12/15/35 11:51
Hi,
I'm quite new to C++.
I'm developing under Microsoft Visual Studio, andI've written some
classes and want them to be exported to a .dll. I use a macro DLL_EXPORT
and everything goes well.
But when I try to export a static function, the client, which imports
the function gives a linking error.
class Station {
...
/* database */
DLL_EXPORT void write2db(bool recursive);
DLL_EXPORT virtual void removeFromDb();
static DLL_EXPORT Station* loadFromDb(int id, bool recursive);
...
};
DLL_EXPORT is changed accordingly to __declspec(dllexport) and
__declspec(dllimport).
So my question is:
1. is it possible to export static functions and how?
Thank you for any help,
Markus
Navigation:
[Reply to this message]
|