23 строки
476 B
C++
23 строки
476 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.
|
|
|
|
#include "StdAfx.h"
|
|
#include "MyProgressCtrl.h"
|
|
|
|
namespace controls
|
|
{
|
|
IMPLEMENT_DYNAMIC(CMyProgressCtrl, CProgressCtrl)
|
|
CMyProgressCtrl::CMyProgressCtrl()
|
|
{
|
|
|
|
}
|
|
|
|
CMyProgressCtrl::~CMyProgressCtrl()
|
|
{
|
|
|
|
}
|
|
|
|
BEGIN_MESSAGE_MAP(CMyProgressCtrl, CProgressCtrl)
|
|
END_MESSAGE_MAP()
|
|
}
|