aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/InputSource.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/InputSource.hh')
-rw-r--r--include/qpdf/InputSource.hh19
1 files changed, 6 insertions, 13 deletions
diff --git a/include/qpdf/InputSource.hh b/include/qpdf/InputSource.hh
index 94dec500..9feb8ec3 100644
--- a/include/qpdf/InputSource.hh
+++ b/include/qpdf/InputSource.hh
@@ -42,20 +42,13 @@ class QPDF_DLL_CLASS InputSource
{
}
QPDF_DLL
- virtual ~InputSource()
- {
- }
+ virtual ~InputSource() = default;
class QPDF_DLL_CLASS Finder
{
public:
- Finder()
- {
- }
- virtual ~Finder()
- {
- }
-
+ Finder() = default;
+ virtual ~Finder() = default;
virtual bool check() = 0;
};
@@ -110,11 +103,11 @@ class QPDF_DLL_CLASS InputSource
public:
QPDF_DLL
- ~Members();
+ ~Members() = default;
private:
- Members();
- Members(Members const&);
+ Members() = default;
+ Members(Members const&) = delete;
};
std::shared_ptr<Members> m;