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