blob: a423e369ad77461ded97a0a52b8a53eecbe4d9a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// $OpenLDAP$
/*
* Copyright 2008-2021 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef LDIF_WRITER_H
#define LDIF_WRITER_H
#include <LDAPEntry.h>
#include <iosfwd>
#include <list>
class LdifWriter
{
public:
LdifWriter( std::ostream& output, int version = 0 );
void writeRecord(const LDAPEntry& le);
void writeIncludeRecord(const std::string& target);
private:
void breakline( const std::string &line, std::ostream &out );
std::ostream& m_ldifstream;
int m_version;
bool m_addSeparator;
};
#endif /* LDIF_WRITER_H */
|