18 строки
433 B
C++
18 строки
433 B
C++
// 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
|
|
|
|
namespace controls
|
|
{
|
|
class CMySpinButtonCtrl : public CSpinButtonCtrl
|
|
{
|
|
DECLARE_DYNAMIC(CMySpinButtonCtrl)
|
|
public:
|
|
CMySpinButtonCtrl();
|
|
virtual ~CMySpinButtonCtrl();
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
}
|