#ifndef XTRA_RES_H #define XTRA_RES_H #include #include #include #ifdef __BORLANDC__ #pragma hdrstop #endif class WXDLLEXPORT wxXmlResourceHandler; class wxToolBarAddOnXmlHandler : public wxXmlResourceHandler { public: wxToolBarAddOnXmlHandler(); virtual wxObject *DoCreateResource(); virtual bool CanHandle(wxXmlNode *node); protected: bool m_isInside; bool m_isAddon; wxToolBar *m_toolbar; }; #endif