//---------------------------------------------------------------------------- // Copyright (C) 2000 ImageLinks Inc. // // License: MIT // // See LICENSE.txt file in the top level directory for more details. // // Author: Garrett Potts // // Description: Event for process progress. // // $Id: ossimProcessProgressEvent.h 23664 2015-12-14 14:17:27Z dburken $ //---------------------------------------------------------------------------- #ifndef ossimProcessProgressEvent_HEADER #define ossimProcessProgressEvent_HEADER #include #include class OSSIMDLLEXPORT ossimProcessProgressEvent : public ossimEvent { public: ossimProcessProgressEvent(ossimObject* owner=NULL, double percentComplete=0.0, const ossimString message="", bool outputMessageFlag=false); virtual ossimObject* dup()const; double getPercentComplete()const; ossimString getMessage()const; void getMessage(ossimString& message)const; void setPercentComplete(double percentComplete); void setMessage(const ossimString& message); void setOutputMessageFlag(bool flag); bool getOutputMessageFlag() const; protected: double thePercentComplete; ossimString theMessage; bool theOutputMessageFlag; TYPE_DATA }; #endif