c++gccg++typedefmysql++

Avoiding conflicting declaration errors in typedef c++


Is there a way I can make g++ ignore or work around conflicting typedefs?

Background:

I'm writing some c++ code for the gridlab_d simulator. My model needs to connect to a c++ database, so I'm using the mysql++ library. use of the mysql++ library requires me to link to the mysql library, so i compile with

g++ -I/usr/include/mysql -I/usr/local/include/mysql++

Problem:

both mysql.h and list.h in gridlab typedef a struct to have the name LIST . Here is the compiler error

In file included from /usr/include/mysql/mysql.h:76, 
             from /usr/include/mysql++/common.h:182,
             from /usr/include/mysql++/connection.h:38,
             from /usr/include/mysql++/mysql++.h:56,
             from direct_data.cpp:21:
/usr/include/mysql/my_list.h: At global scope:
/usr/include/mysql/my_list.h:26: error: conflicting declaration 'typedef struct st_list LIST'
../core/list.h:22: error: 'LIST' has a previous declaration as 'typedef struct s_list LIST'

Thanks for your help!


Solution

  • Best solution:

    1) Keep your current main program

       EXAMPLE: "main.cpp"
    

    2) Write a new module for your database access

       EXAMPLE: dbaccess.cpp, dbaccess.h
    

    3) #include "dbaccess.h" in main.cpp

    You don't need any references to gridlab in your dbaccess code; you don't need to refer to mySql or mySQL lists outside of your dbaccess.* code.

    Problem solved :)?

    PS: If you really need some kind of "list" that you can share between different modules, I'd encourage you to use something like a standard C++ "vector<>". IMHO...