Re: Using STL(map) inside of C data structure. How?
Hi all,
#include <map>
#include anything else necessary
typedef struct {
std::map<const char*, int> m;
} sType;
int main(int argc, char **argv) {
numberOfStructs = 5;
sType s = (sType*) malloc(sizeof(sType) * numberOfStructs);
s.m.empty(); /* seg faults here */
}
Is this possible? Thanks.
The way you wrote it, no. But you can do something like this:
c_map.h (c API)
#ifdef __cplusplus
extern "C" {
#endif
typedef void* map_handle_t;
map_handle_t create();
void destroy(map_handle_t);
void insert(map_handle_t, const char* key, int value);
int get_value( map_handle_t, const char* key);
etc...
c_map.cpp (c++ code)
#include "c_map.h"
#include <map>
map_handle_t create()
{
try {
return new map<const char*, int>();
} catch (...) {
return 0;
}
}
void destroy(map_handle_t h)
{
delete ((map<const char*, int>*) h);
}
void insert(map_handle_t h, const char* key, int value)
{
map<const char*, int>& m = (*(map<const char*, int>*)h);
m[key] = value;
}
int get_value( map_handle_t h, const char* key)
{
map<const char*, int>& m = (*(map<const char*, int>*)h);
return m[key] ;
}
etc...
Boris
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]