Re: [litwindow-users] unresolved external symbol
Status: Alpha
Brought to you by:
hajokirchhoff
From: Jake S. <ja...@za...> - 2004-11-27 03:06:49
|
I said: >I'm just trying to incorporate litWindow and when compiling my source >code, I am getting the following message. > >unresolved external symbol "void __cdecl >litwindow::not_implemented(class _STL::basic_string<char,class >_STL::char_traits<char>,class _STL::allocator<char> > const &)" > >I'm a little lost where to start looking. I assume that I have done >something wrong. > >rssreader compiles and runs fine. This unresolved symbol, becomes apparent when I add the data adapter macros Below is the data struct - very basic struct Company { wxString m_compName; wxString m_contact; wxString m_street; wxString m_suburb; wxString m_postCode; wxString m_state; wxString m_country; wxString m_phone; wxString m_fax; wxString m_email; wxString m_website; wxString m_notes; }; And now the macros BEGIN_ADAPTER(Company) PROP(m_compName) PROP(m_contact) PROP(m_street) PROP(m_suburb) PROP(m_postCode) PROP(m_state) PROP(m_country) PROP(m_phone) PROP(m_fax) PROP(m_email) PROP(m_website) PROP(m_notes) END_ADAPTER() IMPLEMENT_ADAPTER_CONTAINER(vector<Company>) cheers jake |