poco/PDF/src/Encoder.cpp

37 lines
477 B
C++
Raw Normal View History

2012-04-29 18:52:25 +00:00
//
// Encoder.cpp
//
// Library: PDF
// Package: PDFCore
// Module: Encoder
//
// 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/Encoder.h"
namespace Poco {
namespace PDF {
Encoder::Encoder(HPDF_Doc* pPDF,
const HPDF_Encoder& encoder,
2022-07-07 17:18:20 +08:00
const std::string& name):
2012-04-29 18:52:25 +00:00
Resource<HPDF_Encoder>(pPDF, encoder, name)
{
}
Encoder::~Encoder()
{
}
} } // namespace Poco::PDF