OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimWebRequest.h
Go to the documentation of this file.
1 #ifndef ossimWebRequest_HEADER
2 #define ossimWebRequest_HEADER
5 #include <ossim/base/ossimUrl.h>
7 
9 {
10 public:
13  :m_url(url)
14  {}
15  const ossimUrl& getUrl()const{return m_url;}
16  virtual bool setUrl(const ossimUrl& url){m_url = url; return true;}
17  void clearLastError(){m_lastError = "";}
18  void clearLastError()const{m_lastError = "";}
19  const ossimString getLastError(){return m_lastError;}
21 
22 protected:
25 
27 };
28 #endif
ossimWebRequest(const ossimUrl &url)
void clearLastError() const
virtual ossimRefPtr< ossimWebResponse > getResponse()
virtual bool setUrl(const ossimUrl &url)
const ossimString getLastError()
const ossimUrl & getUrl() const
ossimString m_lastError
#define OSSIM_DLL