mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-16 09:37:08 +00:00
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
#ifndef QPDF_ARRAY_HH
|
|
#define QPDF_ARRAY_HH
|
|
|
|
#include <qpdf/QPDFValue.hh>
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
class QPDF_Array: public QPDFValue
|
|
{
|
|
public:
|
|
~QPDF_Array() override = default;
|
|
static std::shared_ptr<QPDFObject> create(std::vector<QPDFObjectHandle> const& items);
|
|
static std::shared_ptr<QPDFObject>
|
|
create(std::vector<std::shared_ptr<QPDFObject>>&& items, bool sparse);
|
|
std::shared_ptr<QPDFObject> copy(bool shallow = false) override;
|
|
std::string unparse() override;
|
|
JSON getJSON(int json_version) override;
|
|
void disconnect() override;
|
|
|
|
int
|
|
size() const noexcept
|
|
{
|
|
return sparse ? sp_size : int(elements.size());
|
|
}
|
|
QPDFObjectHandle at(int n) const noexcept;
|
|
bool setAt(int n, QPDFObjectHandle const& oh);
|
|
std::vector<QPDFObjectHandle> getAsVector() const;
|
|
void setFromVector(std::vector<QPDFObjectHandle> const& items);
|
|
bool insert(int at, QPDFObjectHandle const& item);
|
|
void push_back(QPDFObjectHandle const& item);
|
|
bool erase(int at);
|
|
|
|
private:
|
|
QPDF_Array();
|
|
QPDF_Array(QPDF_Array const&);
|
|
QPDF_Array(std::vector<QPDFObjectHandle> const& items);
|
|
QPDF_Array(std::vector<std::shared_ptr<QPDFObject>>&& items, bool sparse);
|
|
|
|
void checkOwnership(QPDFObjectHandle const& item) const;
|
|
|
|
bool sparse{false};
|
|
int sp_size{0};
|
|
std::map<int, std::shared_ptr<QPDFObject>> sp_elements;
|
|
std::vector<std::shared_ptr<QPDFObject>> elements;
|
|
};
|
|
|
|
#endif // QPDF_ARRAY_HH
|