2017-12-21 20:07:44 +03:00
|
|
|
|
// Copyright (c) Wiesław Šoltés. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2018-01-21 18:08:54 +03:00
|
|
|
|
namespace controls
|
2017-12-21 20:07:44 +03:00
|
|
|
|
{
|
2018-01-21 18:08:54 +03:00
|
|
|
|
class CMySpinButtonCtrl : public CSpinButtonCtrl
|
|
|
|
|
{
|
|
|
|
|
DECLARE_DYNAMIC(CMySpinButtonCtrl)
|
|
|
|
|
public:
|
|
|
|
|
CMySpinButtonCtrl();
|
|
|
|
|
virtual ~CMySpinButtonCtrl();
|
|
|
|
|
protected:
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
};
|
|
|
|
|
}
|