// $Revision: 1.3 $ // Copyright (C) 1994-1995 Taligent, Inc. All rights reserved. #ifndef TaligentSamples_PRIORITYPROPERTY #define TaligentSamples_PRIORITYPROPERTY #ifndef Taligent_PROPERTY #include #endif typedef long EntityPriority; class TPriorityProperty : public TPropertyFor { public: enum EPriority { kLowPriority, kMediumPriority, kHighPriority }; TPriorityProperty(); TPriorityProperty(EPriority priority); TPriorityProperty(const TPriorityProperty& source); virtual ~TPriorityProperty(); TPriorityProperty& operator=(const TPriorityProperty& source); }; #endif