wlanutilities/wlanwizard/t_wlanwizard/stubs/eapqtcertificateinfo.h
changeset 56 de27cc8389dd
parent 50 d4198dcb9983
child 58 301aeb18ae47
--- a/wlanutilities/wlanwizard/t_wlanwizard/stubs/eapqtcertificateinfo.h	Wed Aug 18 10:52:46 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,71 +0,0 @@
-/*
- * 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 "Eclipse Public License v1.0"
- * which accompanies this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html".
- *
- * Initial Contributors:
- * Nokia Corporation - initial contribution.
- *
- * Contributors:
- *
- * Description: 
- *   Stub file for eapwizard!!
- *
- */
-
-#ifndef EAPQTCERTIFICATEINFO_H
-#define EAPQTCERTIFICATEINFO_H
-
-#include <QMetaType>
-#include <QVariant>
-#include <eapqtconfigdefs.h>
-
-class EapQtCertificateInfoPrivate;
-
-class EapQtCertificateInfo
-{
-public:
-
-    enum ItemId
-    {
-        /*! QString */
-        SubjectName,
-        /*! QString */
-        IssuerName,
-        /*! QString */
-        SerialNumber,
-        /*! QByteArray */
-        SubjectKeyId,
-        /*! QString */
-        ThumbPrint,
-        /*! QString */
-        CertificateLabel,
-        /*! marker for the last item */
-        ItemIdLast
-    };
-
-public:
-
-    EapQtCertificateInfo();
-    ~EapQtCertificateInfo();
-
-    EapQtCertificateInfo(const EapQtCertificateInfo &certInfo);
-    EapQtCertificateInfo &operator=(const EapQtCertificateInfo &certInfo);
-
-    QVariant value(ItemId id) const;
-    void setValue(ItemId id, QVariant newValue);
-
-public: // FOR TESTING PURPOSE
-    bool operator==(const EapQtCertificateInfo & rhs ) const;
-    
-private:
-    QScopedPointer<EapQtCertificateInfoPrivate> d_ptr;
-};
-
-// Make the class known to QMetaType to support using QVariant
-Q_DECLARE_METATYPE(EapQtCertificateInfo)
-
-#endif /* EAPQTCERTIFICATEINFO_H */