]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/LDAPSearchResult.h
Initial check of the LDAP C++ SDK written by Ralf Haferkamp <rhafer@suse.de>
[openldap] / contrib / ldapc++ / src / LDAPSearchResult.h
1 /*
2  * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5
6 // $Id: LDAPSearchResult.h,v 1.4 2000/08/31 17:43:49 rhafer Exp $
7
8 #ifndef LDAP_SEARCH_RESULT_H
9 #define LDAP_SEARCH_RESULT_H
10
11 #include "LDAPMessage.h"
12 #include "LDAPEntry.h"
13
14 class LDAPRequest;
15
16 class LDAPSearchResult : public LDAPMsg{
17         private:
18                 LDAPEntry *entry;
19         public:
20                 LDAPSearchResult(LDAPRequest *req, LDAPMessage *msg);
21                 virtual ~LDAPSearchResult();
22                 LDAPEntry* getEntry();
23 };
24 #endif //LDAP_SEARCH_RESULT_H