Update of /cvsroot/openvrml/openvrml/tests
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15428/tests
Modified Files:
test_browser.cpp
Log Message:
Changed file_resource_istream to override the private virtual functions of openvrml::resource_istream.
Index: test_browser.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/tests/test_browser.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** test_browser.cpp 28 Oct 2005 04:17:02 -0000 1.2
--- test_browser.cpp 30 Dec 2005 05:11:01 -0000 1.3
***************
*** 50,64 ****
}
! virtual const std::string url() const throw ()
{
return this->url_;
}
! virtual const std::string type() const throw ()
{
return "application/octet-stream";
}
! virtual bool data_available() const throw ()
{
return !!(*this);
--- 50,65 ----
}
! private:
! virtual const std::string do_url() const throw ()
{
return this->url_;
}
! virtual const std::string do_type() const throw ()
{
return "application/octet-stream";
}
! virtual bool do_data_available() const throw ()
{
return !!(*this);
|