1.1 --- a/epoc32/include/mctcertapps.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/mctcertapps.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -16,11 +16,10 @@
1.4 */
1.5
1.6
1.7 -
1.8 -
1.9 /**
1.10 @file
1.11 - @internalAll
1.12 + @publishedAll
1.13 + @released
1.14 */
1.15
1.16 #ifndef __MCTCERTAPPS_H__
1.17 @@ -31,11 +30,11 @@
1.18 #include <s32file.h>
1.19 #include <ct/mcttokeninterface.h>
1.20
1.21 -/** The UID of certificate application token type */
1.22 -const TInt KTokenTypeCertApps = 0x101f7a37;
1.23 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
1.24 +#include <mctcertappinterface.h>
1.25 +#endif
1.26
1.27 -/** The UID of certificate application interface */
1.28 -const TInt KInterfaceCertApps = 0x101f7a38;
1.29 +
1.30
1.31 /**
1.32 * Information about a certificate application.
1.33 @@ -50,8 +49,6 @@
1.34 * An application is identified by a UID. A TCertificateAppInfo contains this
1.35 * and the name of the application.
1.36 *
1.37 - * @publishedAll
1.38 - * @released
1.39 */
1.40 class TCertificateAppInfo
1.41 {
1.42 @@ -69,18 +66,5 @@
1.43 TName iName;
1.44 };
1.45
1.46 -/**
1.47 - * Interface for certificate applications manager token.
1.48 - */
1.49 -class MCTCertApps : public MCTTokenInterface
1.50 - {
1.51 -public:
1.52 - virtual void AddL(const TCertificateAppInfo& aClient) = 0;
1.53 - virtual void RemoveL(const TUid& aUid) = 0;
1.54 - virtual TInt ApplicationCountL() const = 0;
1.55 - virtual void ApplicationsL(RArray<TCertificateAppInfo>& aAppArray) const = 0;
1.56 - virtual void ApplicationL(const TUid& aUid, TCertificateAppInfo& aInfo) const = 0;
1.57 - };
1.58 -
1.59
1.60 #endif // __MCTCERTAPPS_H__