diff -r 000000000000 -r 95b198f216e5 omadrm/drmengine/dcfrepository/server/inc/SearchLeaf.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omadrm/drmengine/dcfrepository/server/inc/SearchLeaf.h Thu Dec 17 08:52:27 2009 +0200 @@ -0,0 +1,94 @@ +/* +* Copyright (c) 2002-2004 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: Server common implementation +* +*/ + + + +#ifndef CSEARCHLEAF_H +#define CSEARCHLEAF_H + +// INCLUDES +#include + + +// CONSTANTS +// MACROS +// DATA TYPES +// FUNCTION PROTOTYPES +// FORWARD DECLARATIONS +class CDir; + +// CLASS DECLARATION + + +/** +* Server Session implementation. +* DCF Repository +* +* @lib +* @since Series 60 3.0 +*/ +class CSearchLeaf : public CBase + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CSearchLeaf* NewL( CSearchLeaf*& aRoot , const TDesC& aFolderName ); + static CSearchLeaf* NewLC( CSearchLeaf*& aRoot , const TDesC& aFolderName ); + + /** + * Destructor. + */ + virtual ~CSearchLeaf(); + + const TDesC& FolderName(); + + CSearchLeaf*& Root(); + + RPointerArray& LeafList(); + + void SetLeafL( CDir*& aLeaf ); + + void RemoveLeaf( CSearchLeaf*& aLeaf ); + + protected: + + private: + /** + * C++ default constructor. + */ + CSearchLeaf( CSearchLeaf*& aRoot ); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL( const TDesC& aFolderName ); + + + public: // Data + protected: // Data + private: // Data + CSearchLeaf* iRoot; + RPointerArray iLeafList; + HBufC* iFolderName; + }; + + +#endif // CSEARCHLEAF_H + +// End of File