1.1 --- a/epoc32/include/csendasmessagetypes.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,61 +0,0 @@
1.4 -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -#ifndef __CSENDASMESSAGETYPES_H__
1.20 -#define __CSENDASMESSAGETYPES_H__
1.21 -
1.22 -#include <e32base.h>
1.23 -#include <badesca.h>
1.24 -
1.25 -// Forward declarations
1.26 -class RReadStream;
1.27 -class RWriteStream;
1.28 -
1.29 -/**
1.30 -Provides human-readable names and UIDs for the filtered list of message types.
1.31 -
1.32 -@publishedAll
1.33 -@released
1.34 -*/
1.35 -class CSendAsMessageTypes : public CBase
1.36 - {
1.37 -public:
1.38 - IMPORT_C static CSendAsMessageTypes* NewL();
1.39 - IMPORT_C virtual ~CSendAsMessageTypes();
1.40 -
1.41 - IMPORT_C const MDesCArray& AvailableMessageTypes() const;
1.42 - IMPORT_C TUid MessageTypeUid(TInt aIndex) const;
1.43 - IMPORT_C TPtrC NameFromUidL(const TUid aUid) const;
1.44 - IMPORT_C TUid UidFromNameL(const TDesC& aName) const;
1.45 - IMPORT_C TInt Count() const;
1.46 - IMPORT_C void Reset();
1.47 -
1.48 - IMPORT_C void InternalizeL(RReadStream& aReadStream);
1.49 - IMPORT_C void ExternalizeL(RWriteStream& aWriteStream) const;
1.50 -
1.51 - IMPORT_C void AppendMessageTypeL(const TDesC& aMessageTypeName, TUid aMessageTypeUid);
1.52 - IMPORT_C void RemoveMessageType(TInt aIndex);
1.53 - IMPORT_C TInt Size() const;
1.54 -
1.55 -private:
1.56 - CSendAsMessageTypes();
1.57 - void ConstructL();
1.58 -
1.59 -private:
1.60 - CDesCArrayFlat* iMessageTypeNames;
1.61 - RArray<TUid> iMessageTypeUids;
1.62 - };
1.63 -
1.64 -#endif // __CSENDASMESSAGETYPES_H__