#include <ldifio.h>
Be sure to use the input constructors for RecordBuilder<> objects and output constructors for RecordParser<> objects.
Examples: Read contacts from an ldif stream on stdin: new RecordBuilder<Contact, LdifStore>( new LdifStore(cin) );
Write contacts to an ldif stream on stdout: new RecordParser<Contact, LdifStore>( new LdifStore(cout, baseDN, dnAttr) );
Definition at line 50 of file ldifio.h.