// $Revision: 1.4 $ //------------------------------------------------------------------------------ // // Copyright (C) 1994, 1995 Taligent, Inc. All rights reserved. // // Project: TaligentSelectionTool // File: BoundsFeedbackStyle.h // Build/Version: 1.0.0 // // Description: Create a feedback graphic representing the rectangular // bounds of a given area or target. // //------------------------------------------------------------------------------ #ifndef TaligentSamples_BOUNDSFEEDBACKSTYLE #define TaligentSamples_BOUNDSFEEDBACKSTYLE class TBoundsFeedbackStyle; #ifndef TaligentSamples_FEEDBACKSTYLE #include "FeedbackStyle.h" #endif //................................................................................ class TBoundsFeedbackStyle : public TFeedbackStyle { public: virtual MGraphic* DoCreateFeedback(const TGArea& area) const; }; #endif