00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects Software Inc 00008 * 477 Richmond Street West 00009 * Toronto, Ontario 00010 * Canada M5V 3E7 00011 * 416-504-9876 00012 * 00013 * NAME: MSS_PeltSelectorUndo.h 00014 * 00015 * COMMENTS: 00016 * This class stores the current selection of an input selector. 00017 */ 00018 00019 #ifndef __MSS_PeltSelectorUndo_h__ 00020 #define __MSS_PeltSelectorUndo_h__ 00021 00022 #include "MSS_API.h" 00023 #include <OP3D/OP3D_InputSelectorUndo.h> 00024 00025 class MSS_PeltSelector; 00026 00027 class MSS_API MSS_PeltSelectorUndo : public OP3D_InputSelectorUndo 00028 { 00029 public: 00030 MSS_PeltSelectorUndo(MSS_PeltSelector &selector); 00031 virtual ~MSS_PeltSelectorUndo(); 00032 00033 static void saveUndo(MSS_PeltSelector &selector); 00034 00035 protected: 00036 virtual void save(OP3D_InputSelector &selector, ostream &os, 00037 int binary); 00038 virtual bool load(OP3D_InputSelector &selector, UT_IStream &is); 00039 }; 00040 00041 #endif
1.5.9