linkage and unicode corrections

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23221 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2003-08-25 23:29:55 +00:00
parent 6c7a1f8274
commit 583150e369
3 changed files with 285 additions and 99 deletions

View File

@@ -158,10 +158,12 @@ private :
};
#define WX_DEFINE_FLAGS( flags ) \
struct WXDLLEXPORT flags \
class WXDLLEXPORT flags \
{\
flags(long data=0) :m_data(data) {} \
public : \
flags(long data=0) :m_data(data) {} \
long m_data ;\
bool operator ==(const flags &rhs) const { return m_data == rhs.m_data; }\
} ;
#endif