poco/PDF/src/Destination.cpp

37 lines
521 B
C++
Raw Normal View History

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.
//
// 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