FLImaging 6.6.27.1
SNAPFeatureFLPoint4.h
1#pragma once
2
3#include "SNAPFeatureBase.h"
4#include "DefinitionGUISNAP.h"
5
6
7namespace FLImaging
8{
9 namespace GUI
10 {
11 template<typename T>
12 class FL_EXPORT CSNAPFeatureFLPoint4 : public CSNAPFeatureBase
13 {
14 SupportToDuplicateObject(CSNAPFeatureFLPoint4<T>, *this);
15
16 public:
17 CSNAPFeatureFLPoint4();
18 CSNAPFeatureFLPoint4(const CSNAPFeatureFLPoint4& rhs);
19 CSNAPFeatureFLPoint4(const CSNAPFeatureFLPoint4* pRhs);
20 virtual ~CSNAPFeatureFLPoint4();
21
22 virtual const CResult Assign(const CSNAPFeatureFLPoint4& rhs);
23 virtual const CResult Assign(const CSNAPFeatureFLPoint4* pRhs);
24
25 virtual const CResult Clear() override;
26
27 virtual const CResult SetFigure(const Foundation::CFLFigure* pFlfFigure);
28 virtual Foundation::CFLPoint4<T>* GetFigure() const;
29
30 virtual EDefinedParameterType GetParameterType() const;
31
32 DeclareGetClassType();
33
34 public:
35 Foundation::CFLPoint4<T> m_flpObject;
36 };
37 }
38}
39
Definition D2DObject.h:12
@ Assign
CGUIPropertyItemView3DFigure 의 값을 해당 도형으로 설정하는 함수
Definition DefinitionsGUIView3D.h:2732
@ Clear
도형 정리 메뉴
Definition DefinitionsGUI.h:2058