diff -r 7a0216d033ac -r fe6b6762fccd securitysettings/qtconfigutils/eapqtconfiginterface/inc/eapqtconfig_p.h --- a/securitysettings/qtconfigutils/eapqtconfiginterface/inc/eapqtconfig_p.h Wed Jun 23 18:14:55 2010 +0300 +++ b/securitysettings/qtconfigutils/eapqtconfiginterface/inc/eapqtconfig_p.h Tue Jul 06 14:18:35 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,26 +17,45 @@ */ /* - * %version: 4 % + * %version: 5 % */ #ifndef EAPQTCONFIG_P_H #define EAPQTCONFIG_P_H +// System includes #include #include +// User includes + +// Forward declarations + +// External data types + +// Constants + +// Class declaration class EapQtConfigPrivate { - friend class EapQtConfig; public: + + // Data types + EapQtConfigPrivate(); ~EapQtConfigPrivate(); private: + Q_DISABLE_COPY(EapQtConfigPrivate) + +private: // data + QHash mSettings; + + // Friend classes + friend class EapQtConfig; }; -#endif /* EAPQTCONFIG_P_H */ +#endif // EAPQTCONFIG_P_H