aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/ResourceFinder.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/ResourceFinder.hh')
-rw-r--r--libqpdf/qpdf/ResourceFinder.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/libqpdf/qpdf/ResourceFinder.hh b/libqpdf/qpdf/ResourceFinder.hh
index ac3d5b4c..8d3c6782 100644
--- a/libqpdf/qpdf/ResourceFinder.hh
+++ b/libqpdf/qpdf/ResourceFinder.hh
@@ -9,12 +9,11 @@ class ResourceFinder: public QPDFObjectHandle::ParserCallbacks
ResourceFinder();
virtual ~ResourceFinder() = default;
virtual void handleObject(QPDFObjectHandle, size_t, size_t) override;
- virtual void handleWarning() override;
+ virtual void handleEOF() override;
std::set<std::string> const& getNames() const;
std::map<std::string,
std::map<std::string,
std::set<size_t>>> const& getNamesByResourceType() const;
- bool sawBad() const;
private:
std::string last_name;
@@ -23,7 +22,6 @@ class ResourceFinder: public QPDFObjectHandle::ParserCallbacks
std::map<std::string,
std::map<std::string,
std::set<size_t>>> names_by_resource_type;
- bool saw_bad;
};
#endif // RESOURCEFINDER_HH