00001 // 00002 // Copyright (c) 2000 by Tech Soft 3D, LLC. 00003 // The information contained herein is confidential and proprietary to 00004 // Tech Soft 3D, LLC., and considered a trade secret as defined under 00005 // civil and criminal statutes. Tech Soft 3D shall pursue its civil 00006 // and criminal remedies in the event of unauthorized use or misappropriation 00007 // of its trade secrets. Use of this information by anyone other than 00008 // authorized employees of Tech Soft 3D, LLC. is granted only under a 00009 // written non-disclosure agreement, expressly prescribing the scope and 00010 // manner of such use. 00011 // 00012 // $Id: ebbac9ed607b946474615b3da1619f3423241963 $ 00013 // 00014 00015 // HOpCreateCone.h : interface of the HOpCreateCone class 00016 // Creates a cone using left mouse down and drag 00017 00018 #ifndef _HOPCREATECONE_H 00019 #define _HOPCREATECONE_H 00020 00021 #ifdef H_PACK_8 00022 #pragma pack(push) 00023 #pragma pack(8) 00024 #endif 00025 00026 #include "HTools.h" 00027 #include "HOpConstructCone.h" 00028 00030 00043 class MVO_API HOpCreateCone : public HOpConstructCone 00044 { 00045 public: 00053 HOpCreateCone (HBaseView* view, int DoRepeat=0, int DoCapture=1); 00054 virtual ~HOpCreateCone(); 00055 00056 00060 virtual const char * GetName(); 00061 00069 virtual int OnLButtonDown(HEventInfo &hevent); 00070 00076 virtual HBaseOperator * Clone(); 00077 }; 00078 00079 #ifdef H_PACK_8 00080 #pragma pack(pop) 00081 #endif 00082 00083 #endif 00084 00085 00086 00087