#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; };