diff -r e5b3a2155e1a -r d2c4c66342f3 messagingfw/deprecate/senduiservices/src/senduisingleton.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/deprecate/senduiservices/src/senduisingleton.cpp Tue Aug 31 15:41:11 2010 +0300 @@ -0,0 +1,116 @@ +/* +* Copyright (c) 2007 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 +* +*/ + + + +// INCLUDE FILES + +#include // CMsvSession +#include // CClientMtmRegistry +#include // CMtmUiRegistry +#include // CMtmUiDataRegistry + +#include + + +// CONSTANTS + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::CSendUiSingleton +// C++ default constructor can NOT contain any code, that +// might leave. +// ----------------------------------------------------------------------------- +// +CSendUiSingleton::CSendUiSingleton() + { + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::ConstructL +// Symbian 2nd phase constructor can leave. +// ----------------------------------------------------------------------------- +// +void CSendUiSingleton::ConstructL() + { + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::NewL +// Two-phased constructor. +// ----------------------------------------------------------------------------- +// +EXPORT_C CSendUiSingleton* CSendUiSingleton::NewL() + { + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::~CSendUiSingleton +// Destructor +// ----------------------------------------------------------------------------- +// +CSendUiSingleton::~CSendUiSingleton() + { + + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::MsvSessionL +// ----------------------------------------------------------------------------- +// +EXPORT_C CMsvSession& CSendUiSingleton::MsvSessionL() + { + + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::ClientMtmRegistryL +// ----------------------------------------------------------------------------- +// +EXPORT_C CClientMtmRegistry& CSendUiSingleton::ClientMtmRegistryL() + { + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::MtmUiRegistryL +// ----------------------------------------------------------------------------- +// +EXPORT_C CMtmUiRegistry& CSendUiSingleton::MtmUiRegistryL() + { + + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::MtmUiDataRegistryL +// ----------------------------------------------------------------------------- +// +EXPORT_C CMtmUiDataRegistry& CSendUiSingleton::MtmUiDataRegistryL() + { + + } + +// ----------------------------------------------------------------------------- +// CSendUiSingleton::MsvSessionL +// ----------------------------------------------------------------------------- +// +void CSendUiSingleton::HandleSessionEventL(TMsvSessionEvent /*aEvent*/, TAny* /*aArg1*/, TAny* /*aArg2*/, TAny* /*aArg3*/) + { + } + + +// End of File