openldap/contrib/ldapc++/src/LdifWriter.h

32 lines
641 B
C
Raw Normal View History

2008-03-28 07:05:10 -04:00
// $OpenLDAP$
2008-03-27 13:02:37 -04:00
/*
* Copyright 2008, 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 */