mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-23 23:33:07 -05:00
Copyright notices have been adjusted per on-file OpenLDAP Contributor Assignment Agreement.
14 lines
268 B
C++
14 lines
268 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#ifndef LDAP_URL_LIST_H
|
|
#define LDAP_URL_LIST_H
|
|
|
|
#include <list>
|
|
#include "LDAPUrl.h"
|
|
|
|
typedef list<LDAPUrl*> LDAPUrlList;
|
|
|
|
#endif //LDAP_URL_LIST_H
|