mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
15 lines
268 B
C
15 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
|