[litwindow-users] Re: unresolved external symbol
Status: Alpha
Brought to you by:
hajokirchhoff
|
From: Hajo K. <mai...@ha...> - 2004-11-27 08:54:57
|
Jake Skinner wrote:
> struct Company
> {
> wxString m_compName;
> };
>
> And now the macros
> BEGIN_ADAPTER(Company)
> PROP(m_compName)
> END_ADAPTER()
>
> IMPLEMENT_ADAPTER_CONTAINER(vector<Company>)
>
> cheers
> jake
>
Hi Jake,
not_implemented is a function that is called by incomplete data
adapters, i.e. when a from_string method is missing. It shouldn't turn
up as a missing symbol though.
I cannot remember if I the library already includes the wxString data
adapter. Could you please try this:
remove all members from Company except m_compName
change wxString m_compName to string m_compName...
change string m_compName to int m_compName...
try again and post the results here.
Are you building debug or release version? Are you using the visual
studio compiler?
Regards
Hajo
P.S. I am currently meeting with Julian Smart in Edinburgh so you can
expect more and better wxWidgets integration in the future. Being in
Edinburgh also means that I might be more slow to answer.
|