diff -r 000000000000 -r 62f9d29f7211 webservices/wsutils/inc/senattributes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/webservices/wsutils/inc/senattributes.h Thu Jan 07 16:19:19 2010 +0200 @@ -0,0 +1,119 @@ +/* +* Copyright (c) 2005 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: Header declaration + * +*/ + + + + + + + + +#ifndef C_SEN_ATTRIBUTES_H +#define C_SEN_ATTRIBUTES_H + +// INCLUDES + +#include +#include + +#include "senattribute.h" + +#include "senpointermap.h" + +// CONSTANTS + +// FORWARD DECLARATIONS + +// CLASS DEFINITIONS + +class CSenAttribute; + +/** + * @author lewontin + * A list of CSenAttribute objects. + * Each supports multiple values (for example, multiple groups). + */ +class CSenAttributes : public CBase + { + + public: + + // Constructors and Destructors + + IMPORT_C static CSenAttributes* NewL(); + + IMPORT_C static CSenAttributes* NewLC(); + + + IMPORT_C static CSenAttributes* NewL(const CSenAttributes& aAttributes); + + IMPORT_C static CSenAttributes* NewLC(const CSenAttributes& aAttributes); + + + IMPORT_C virtual ~CSenAttributes(); + + // New methods: + + IMPORT_C void AddAttributeL(const CSenAttribute& aValue); //codescannerwarnings + + + IMPORT_C const CSenAttribute& GetAttribute(const TDesC8& aName) const; + + + // Number of attributes + IMPORT_C TInt Count() const; + + + // Attribute equality condition test + IMPORT_C TBool Equals(const CSenAttribute& aAttr) const; + + + // Match any attribute + IMPORT_C TBool MatchAny(const CSenAttributes& aAttrs); + + + protected: + void BaseConstructL(); + void BaseConstructL(const CSenAttributes& aAttributes); + + + + private: + + CSenAttributes(); + + // Returns attribute at index position + const CSenAttribute& AttributeAt(TInt aIndex) const; + + + /** + * File logger. + * + */ + //RFileLogger* Log() const; + + + private: // Data + + RSenPointerMap iAttrList; + + //RFileLogger iLog; + + }; + +#endif // C_SEN_ATTRIBUTES_H +