Best way to convert C++ object <--> C struct? -
so trying integrate custom c library existing c++ project. have various c++ objects need stored/loaded c db , interface various c functions. need convert c++ objects c structs, , again. have made progress, running memory allocation issues.
i know haven't included code here, wondering if there general tips task? have seen void* used in extern "c" generic c++ objects, need load/save data from/to c++ objects , c structs.
if haven't worded correctly, please ask!
use extern "c"
declare c structures:
extern "c" { struct some_c_struct { int field1; char *p; }; };
then, in c++ code can use some_c_struct
other c++ class
or struct
, guaranteed c compatibility, , pass them , c code library you're using.
practically speaking, extern "c"
declaration isn't needed, language lawyers demand it. additionally, struct cannot use c++-specific features, virtual functions.
Comments
Post a Comment