/usr/include/ossim/base/ossimWebRequestFactoryBase.h is in libossim-dev 2.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #ifndef ossimWebRequestFactoryBase_HEADER
#define ossimWebRequestFactoryBase_HEADER
#include <ossim/base/ossimBaseObjectFactory.h>
#include <ossim/base/ossimHttpRequest.h>
#include <ossim/base/ossimKeywordlist.h>
/**
* We will for now hard code to be ossimHttpRequest but later
* we will refactor and add a base ossimWebRequest so we can handle
* other schema definitions such as ftp, scp, smtp, ... etc.
*/
class OSSIM_DLL ossimWebRequestFactoryBase : public ossimBaseObjectFactory
{
public:
virtual ossimWebRequest* create(const ossimUrl& /*url*/)
{
return 0;
}
};
#endif
|