// $Revision: 1.5 $ #ifndef TaligentSamples_WEBPRESENTERSTATE #define TaligentSamples_WEBPRESENTERSTATE //----------------------------------------------------------------------------- // // Copyright (C) 1995 Taligent, Inc. All rights reserved. // // Project: WebRunner Sample // File: WebPresenterState.h // Build/Version: 1.0.0 // //----------------------------------------------------------------------------- #ifndef Taligent_TEXTVIEW #include #endif #ifndef Taligent_EMBEDDERTEXT #include #endif #ifndef Taligent_TEXTPRESENTERSTATE #include #endif //============================================================================= // TWebModel class TWebPresenterState : public TTextPresenterState { public: MCollectibleDeclarationsMacro(TWebPresenterState); public: TWebPresenterState(); TWebPresenterState(const TWebPresenterState& source); virtual ~TWebPresenterState(); virtual TStream& operator>>=(TStream& toStream) const; virtual TStream& operator<<=(TStream& fromStream); protected: virtual TGUIPresenter* HandleCreatePresenter(const TGUIBundle& bundle) const; private: enum {kOriginalVersion}; }; #endif