35 lines
918 B
C++
35 lines
918 B
C++
//
|
|
|
|
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// ***************************************************************************
|
|
//
|
|
// Original Author: Rajesh Rao
|
|
//
|
|
// $Author: rajeshr $
|
|
// $Date: 6/11/98 4:43p $
|
|
// $Workfile:ldapproi.cpp $
|
|
//
|
|
// $Modtime: 6/11/98 11:21a $
|
|
// $Revision: 1 $
|
|
// $Nokeywords: $
|
|
//
|
|
//
|
|
// Description: Contains the declaration for the CLDAPClassProviderInitializer class. This class
|
|
// is used to initialize the static members of the CLDAPCLassProvider class
|
|
//
|
|
//***************************************************************************
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DS_LDAP_CLASS_PROVIDER_INIT_H
|
|
#define DS_LDAP_CLASS_PROVIDER_INIT_H
|
|
|
|
class CLDAPClassProviderInitializer
|
|
{
|
|
|
|
public:
|
|
CLDAPClassProviderInitializer();
|
|
~CLDAPClassProviderInitializer();
|
|
};
|
|
|
|
#endif /* DS_LDAP_CLASS_PROVIDER_INIT_H */ |