You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
C
25 lines
550 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "item.h"
|
||
|
|
|
||
|
|
namespace NItem
|
||
|
|
{
|
||
|
|
|
||
|
|
class CItemMineralRights :
|
||
|
|
public CItem
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CItemMineralRights(CSigmaDoc * ppDoc);
|
||
|
|
virtual ~CItemMineralRights(void);
|
||
|
|
|
||
|
|
public:
|
||
|
|
void OnLButtonDown(CDC *pDC, UINT nFlags, CPoint point, int vk) override;
|
||
|
|
void OnLButtonUp(CDC *pDC, UINT nFlags, CPoint point, int vk) override;
|
||
|
|
int OnMouseMove(CDC *pDC, UINT nFlags, CPoint point) override;
|
||
|
|
BOOL OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags) override;
|
||
|
|
BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) override;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
};
|
||
|
|
|
||
|
|
};
|