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 * 123 Front Street West, Suite 1401 00009 * Toronto, Ontario 00010 * Canada M5J 2M2 00011 * 416-504-9876 00012 * 00013 * NAME: BM_MoveTool.h (BM Library, C++) 00014 * 00015 * COMMENTS: Abstract mix-in class for move tool states 00016 */ 00017 00018 #ifndef __BM_MOVETOOL_H__ 00019 #define __BM_MOVETOOL_H__ 00020 00021 #include "BM_API.h" 00022 00023 // Since we're an abstract class, do not use BM_API 00024 class BM_MoveTool 00025 { 00026 public: 00027 enum Type { ALL, TRANSLATE, ROTATE, SCALE }; 00028 00029 virtual ~BM_MoveTool() { } 00030 00031 virtual void setMoveToolType(Type move_type) = 0; 00032 virtual Type getMoveToolType() const = 0; 00033 }; 00034 00035 #endif // __BM_MOVETOOL_H__
1.5.9