Antenna House PDF Tool API (C++) 8.0
PtlRecipients.h
1
2// PtlRecipients.h
3// Copyright (C) 2020 Antenna House,Inc.
4// All rights reserved.
6#ifndef PDFTK_PTLRECIPIENTS_H_
7#define PDFTK_PTLRECIPIENTS_H_
8
9//#include "PtlRecipient.h"
10#include "PdfTkBase.h"
11
12namespace PdfTk {
13
14class PtlRecipient;
15
19
20class PDFTK_API PtlRecipients
21{
22private:
23 int m_dataRecipients;
24public:
25 int getHandle() const;
26
27public:
33
41
46
47public:
54
55public:
61 bool isEmpty() const;
62
68 int getCount() const;
69
70public:
80 PtlRecipient& get(int index);
81
88 void append(PtlRecipient& recipient);
89};
90
91}
92
93#endif
void append(PtlRecipient &recipient)
受信者追加。
PtlRecipients & operator=(const PtlRecipients &obj)
コピーオペレータ alias copy
PtlRecipients(const PtlRecipients &obj)
コピーコンストラクタ alias copy
~PtlRecipients()
デストラクタ
PtlRecipient & get(int index)
受信者を取得。
PtlRecipients()
コンストラクタ
bool isEmpty() const
空かどうかを取得。
int getCount() const
PtlRecipientの数を取得。