-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new inner class to QPDF::Objects
- Loading branch information
Showing
5 changed files
with
60 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#ifndef QPDF_OBJECTS_HH | ||
#define QPDF_OBJECTS_HH | ||
|
||
#include <qpdf/QPDF.hh> | ||
|
||
// The Objects class is responsible for keeping track of all objects belonging to a QPDF instance, | ||
// including loading it from an input source when required. | ||
class QPDF::Objects | ||
{ | ||
public: | ||
Objects(QPDF& qpdf, QPDF::Members* m) | ||
{ | ||
} | ||
|
||
std::map<QPDFObjGen, ObjCache> obj_cache; | ||
}; // Objects | ||
|
||
#endif // QPDF_OBJECTS_HH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters