00001 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc. 00002 // 00003 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., 00004 // and considered a trade secret as defined under civil and criminal statutes. 00005 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of 00006 // unauthorized use or misappropriation of its trade secrets. Use of this information 00007 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under 00008 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use. 00009 00010 // HOpCreateNurbsCurve.h - interface for the HOpCreateNurbsCurve class 00011 // started GP 11/1/99 00012 00013 #ifndef _HOPCREATENURBSCURVE_H 00014 #define _HOPCREATENURBSCURVE_H 00015 00016 #ifdef H_PACK_8 00017 #pragma pack(push) 00018 #pragma pack(8) 00019 #endif 00020 00021 #include "HTools.h" 00022 #include "HOpConstructNurbsCurve.h" 00023 00024 00026 00040 class MVO_API HOpCreateNurbsCurve : public HOpConstructNurbsCurve 00041 { 00042 public: 00050 HOpCreateNurbsCurve(HBaseView* view, int DoRepeat=0, int DoCapture=1); 00051 virtual ~HOpCreateNurbsCurve(); 00052 00058 virtual HBaseOperator * Clone(); 00059 00063 virtual const char * GetName(); 00064 00071 virtual int OnLButtonDblClk(HEventInfo &hevent); 00072 00073 }; 00074 00075 00076 #ifdef H_PACK_8 00077 #pragma pack(pop) 00078 #endif 00079 00080 #endif 00081 00082 00083 00084 00085