class EditSplineMod : public Modifier, ..., AttachMatDlgUser { . . . static int attachMat; static BOOL condenseMat; . . . } // from AttachMatDlgUser int GetAttachMat() { return attachMat; } void SetAttachMat(int value) { attachMat = value; } BOOL GetCondenseMat() { return condenseMat; } void SetCondenseMat(BOOL sw) { condenseMat = sw; }
int EditSplineMod::condenseMat = FALSE; int EditSplineMod::attachMat = ATTACHMAT_NEITHER;
#include <imtl.h>
Public Member Functions |
|
virtual | ~AttachMatDlgUser () |
virtual int | GetAttachMat ()=0 |
virtual BOOL | GetCondenseMat ()=0 |
virtual void | SetAttachMat (int value)=0 |
virtual void | SetCondenseMat (BOOL sw)=0 |
virtual ~AttachMatDlgUser | ( | ) | [inline, virtual] |
{;}
virtual int GetAttachMat | ( | ) | [pure virtual] |
Implemented in PatchObject, and SplineShape.
virtual BOOL GetCondenseMat | ( | ) | [pure virtual] |
Implemented in PatchObject, and SplineShape.
virtual void SetAttachMat | ( | int | value | ) | [pure virtual] |
Implemented in PatchObject, and SplineShape.
virtual void SetCondenseMat | ( | BOOL | sw | ) | [pure virtual] |
Implemented in PatchObject, and SplineShape.