diff -r 372d2d6c5cf9 -r ad1f037f1ac2 securitysettings/qtconfigutils/eapqtplugininfo/inc/eapqtpluginhandle_p.h --- a/securitysettings/qtconfigutils/eapqtplugininfo/inc/eapqtpluginhandle_p.h Thu Jun 10 16:12:28 2010 +0300 +++ b/securitysettings/qtconfigutils/eapqtplugininfo/inc/eapqtpluginhandle_p.h Thu Jun 24 11:23:08 2010 +0300 @@ -2,7 +2,7 @@ * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). * All rights reserved. * This component and the accompanying materials are made available - * under the terms of the License "Eclipse Public License v1.0" + * under the terms of "Eclipse Public License v1.0" * which accompanies this distribution, and is available * at the URL "http://www.eclipse.org/legal/epl-v10.html". * @@ -17,28 +17,48 @@ */ /* - * %version: 2 % + * %version: 3 % */ #ifndef EAPQTPLUGINHANDLE_P_H #define EAPQTPLUGINHANDLE_P_H -#include "eapqtexpandedeaptype.h" +// System includes +#include + +// User includes +// Forward declarations + +// External data types + +// Constants + +// Class declaration class EapQtPluginHandlePrivate { - friend class EapQtPluginHandle; public: - EapQtPluginHandlePrivate(EapQtExpandedEapType type, int uid); + + // Data types + + EapQtPluginHandlePrivate(const EapQtExpandedEapType& type, const int uid); ~EapQtPluginHandlePrivate(); private: + EapQtPluginHandlePrivate(); Q_DISABLE_COPY(EapQtPluginHandlePrivate) + +private: // data + EapQtExpandedEapType mType; int mProtocolImplementationUid; + + // Friend classes + friend class EapQtPluginHandle; + }; -#endif /* EAPQTPLUGINHANDLE_P_H */ +#endif // EAPQTPLUGINHANDLE_P_H