Hi Guys,

I am working on Bug 621870 and hoped you might give me some advice about the best way to do this. I am thinking of converting the 'st_sql_list' structure (in drizzled/sql_list.h) to c++ class using the STL list data structure as
a private member.
Like:

#include <list>
typedef class SQL_LIST
{
list<char> sql_list;
public:
    void push_front(...);
    void push_back(...);
    ...
};

Is this the approach you would take?

Cheers,
Travis


_______________________________________________
Mailing list: https://launchpad.net/~drizzle-discuss
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~drizzle-discuss
More help   : https://help.launchpad.net/ListHelp

Reply via email to