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.
21 lines
344 B
C++
21 lines
344 B
C++
#pragma once
|
|
#include "item.h"
|
|
|
|
class CItemSetContourName :
|
|
public CItem
|
|
{
|
|
public:
|
|
CItemSetContourName(CSigmaDoc * ppDoc);
|
|
~CItemSetContourName();
|
|
void OnLButtonDown(CDC* pDC, UINT nFlags, CPoint point, int vk) override;
|
|
CString GetNewName();
|
|
void SetNewName(LPCTSTR newName);
|
|
|
|
bool m_OperateSuccess;
|
|
|
|
private:
|
|
CString m_newName;
|
|
|
|
};
|
|
|