pgadmin3/include/ctl/xh_timespin.h
2020-07-07 22:19:12 +05:00

30 lines
717 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// xh_timespin.h - wxTimeSpinCtrl handler
//
//////////////////////////////////////////////////////////////////////////
#ifndef _WX_XH_TIMESPIN_H_
#define _WX_XH_TIMESPIN_H_
#include "wx/xrc/xmlres.h"
//class WXDLLIMPEXP_XRC
class wxTimeSpinXmlHandler : public wxXmlResourceHandler
{
DECLARE_DYNAMIC_CLASS(wxTimeSpinXmlHandler)
public:
wxTimeSpinXmlHandler();
virtual wxObject *DoCreateResource();
virtual bool CanHandle(wxXmlNode *node);
};
#endif // _WX_XH_TIMESPIN_H_