mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-08-15 12:17:11 +02:00
Update POCO library.
This commit is contained in:
+8
-8
@@ -43,31 +43,31 @@ public:
|
||||
EntityResolverImpl();
|
||||
/// Creates an EntityResolverImpl that uses the default
|
||||
/// URIStreamOpener.
|
||||
|
||||
|
||||
EntityResolverImpl(const Poco::URIStreamOpener& opener);
|
||||
/// Creates an EntityResolverImpl that uses the given
|
||||
/// URIStreamOpener.
|
||||
|
||||
|
||||
~EntityResolverImpl();
|
||||
/// Destroys the EntityResolverImpl.
|
||||
|
||||
|
||||
InputSource* resolveEntity(const XMLString* publicId, const XMLString& systemId);
|
||||
/// Tries to use the URIStreamOpener to create and open an istream
|
||||
/// for the given systemId, which is interpreted as an URI.
|
||||
///
|
||||
/// If the systemId is not a valid URI, it is interpreted as
|
||||
/// a local filesystem path and a Poco::FileInputStream is opened for it.
|
||||
|
||||
|
||||
void releaseInputSource(InputSource* pSource);
|
||||
/// Deletes the InputSource's stream.
|
||||
|
||||
|
||||
protected:
|
||||
std::istream* resolveSystemId(const XMLString& systemId);
|
||||
|
||||
std::istream* resolveSystemId(const XMLString& systemId);
|
||||
|
||||
private:
|
||||
EntityResolverImpl(const EntityResolverImpl&);
|
||||
EntityResolverImpl& operator = (const EntityResolverImpl&);
|
||||
|
||||
|
||||
const Poco::URIStreamOpener& _opener;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user