mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
748ab301d4
git-svn-id: svn+q:///qpdf/trunk@849 71b93d88-0707-0410-a8cf-f5a4172ac649
33 lines
797 B
C++
33 lines
797 B
C++
// Copyright (c) 2005-2009 Jay Berkenbilt
|
|
//
|
|
// This file is part of qpdf. This software may be distributed under
|
|
// the terms of version 2 of the Artistic License which may be found
|
|
// in the source distribution. It is provided "as is" without express
|
|
// or implied warranty.
|
|
|
|
#ifndef __PL_DISCARD_HH__
|
|
#define __PL_DISCARD_HH__
|
|
|
|
// This pipeline discards its output. It is an end-of-line pipeline
|
|
// (with no next).
|
|
|
|
// This pipeline is reusable; i.e., it is safe to call write() after
|
|
// calling finish().
|
|
|
|
#include <qpdf/Pipeline.hh>
|
|
|
|
class Pl_Discard: public Pipeline
|
|
{
|
|
public:
|
|
DLL_EXPORT
|
|
Pl_Discard();
|
|
DLL_EXPORT
|
|
virtual ~Pl_Discard();
|
|
DLL_EXPORT
|
|
virtual void write(unsigned char*, int);
|
|
DLL_EXPORT
|
|
virtual void finish();
|
|
};
|
|
|
|
#endif // __PL_DISCARD_HH__
|