1//
2// Destination.cpp
3//
4// Library: PDF
5// Package: PDFCore
6// Module: Destination
7//
8// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/PDF/Destination.h"
16
17
18namespace Poco {
19namespace PDF {
20
21
22Destination::Destination(HPDF_Doc* pPDF,
23 const HPDF_Destination& destination,
24 const std::string& name):
25 Resource<HPDF_Destination>(pPDF, destination, name)
26{
27}
28
29
30
31Destination::~Destination()
32{
33}
34
35
36} } // namespace Poco::PDF
37