2012-04-29 18:52:25 +00:00
|
|
|
//
|
|
|
|
// Destination.cpp
|
|
|
|
//
|
|
|
|
// Library: PDF
|
|
|
|
// Package: PDFCore
|
|
|
|
// Module: Destination
|
|
|
|
//
|
|
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 18:52:25 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/PDF/Destination.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
namespace PDF {
|
|
|
|
|
|
|
|
|
|
|
|
Destination::Destination(HPDF_Doc* pPDF,
|
|
|
|
const HPDF_Destination& destination,
|
2022-07-07 17:18:20 +08:00
|
|
|
const std::string& name):
|
2012-04-29 18:52:25 +00:00
|
|
|
Resource<HPDF_Destination>(pPDF, destination, name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Destination::~Destination()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} } // namespace Poco::PDF
|