diff -r 000000000000 -r 094583676ce7 wvuing/wvcommandutils/Inc/CCASingletonCmd.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wvuing/wvcommandutils/Inc/CCASingletonCmd.h Thu Dec 17 08:41:52 2009 +0200 @@ -0,0 +1,74 @@ +/* +* Copyright (c) 2006 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: Singleton base class +* +*/ + + + +#ifndef CCASINGLETONCMD_H +#define CCASINGLETONCMD_H + +// INCLUDES +#include + + +// FUNCTION PROTOTYPES +/** +* Create singleton instance. +* +* @return pointer to singleton instance +*/ +TAny* ConstructSingletonInstanceL(); + +// CLASS DECLARATION + +/** +* Singleton base class. +* +* @lib N/A +* +*/ +NONSHARABLE_CLASS( CCASingletonCmd ) : public CBase + { +public: // Constructors and destructor + + + /** + * Destructor. + */ + virtual ~CCASingletonCmd(); + +protected: + + + /** + * C++ default constructor. + */ + CCASingletonCmd(); + +protected: // New functions + + /** + * Return instance. + * + * @return pointer to singleton instance + */ + static TAny* BaseInstanceL(); + + }; + +#endif // CCASINGLETONCMD_H + +// End of File