/usr/include/root/TLDAPEntry.h is in libroot-net-ldap-dev 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | // @(#)root/ldap:$Id$
// Author: Evgenia Smirnova 21/09/2001
/*************************************************************************
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TLDAPEntry
#define ROOT_TLDAPEntry
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifndef ROOT_TList
#include "TList.h"
#endif
#ifndef ROOT_CintLDAP
#include "CintLDAP.h"
#endif
class TLDAPServer;
class TLDAPAttribute;
class TLDAPEntry: public TObject {
friend class TLDAPServer;
private:
TString fDn; // Distinguished name of entry
TList *fAttr; // List of attributes
mutable Int_t fNCount; // Index of attribute to be returned from GetAttribute()
LDAPMod **GetMods(Int_t op); // Get array of LDAPMod structures of the entry
protected:
TLDAPEntry& operator=(const TLDAPEntry&);
public:
TLDAPEntry(const char *dn);
TLDAPEntry(const TLDAPEntry &e);
virtual ~TLDAPEntry();
const char *GetDn() const { return fDn; }
void SetDn(const char *dn) { fDn = dn; }
void AddAttribute(const TLDAPAttribute &attr);
TLDAPAttribute *GetAttribute() const;
TLDAPAttribute *GetAttribute(const char *name) const;
void DeleteAttribute(const char *name);
Int_t GetCount() const { return fAttr->GetSize(); }
Bool_t IsReferral() const;
TList *GetReferrals() const;
void Print(Option_t * = "") const;
ClassDef(TLDAPEntry, 0) //describe one entry in LDAP
};
#endif
|