sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Implements CSecSettingsServer. See class and function definitions for sl@0: * more information. sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #include "secsettingsserver.h" sl@0: #include sl@0: #include sl@0: sl@0: namespace SecuritySettingsServer sl@0: { sl@0: CSecSettingsServer* CSecSettingsServer::NewLC() sl@0: /** sl@0: Factory function allocates new, initialized instance of sl@0: CSecSettingsServer which is left on the cleanup stack. sl@0: sl@0: @return New, initialized instance of CSecSettingsServer sl@0: which is left on the cleanup stack. sl@0: */ sl@0: { sl@0: CSecSettingsServer* self = new(ELeave) CSecSettingsServer(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: return self; sl@0: } sl@0: sl@0: CSecSettingsServer::CSecSettingsServer() sl@0: /** sl@0: Initializes the superclass with this server's version. sl@0: */ sl@0: : CScsServer(SecuritySettingsServer::Version(), EPriorityStandard) sl@0: { sl@0: // empty. sl@0: } sl@0: sl@0: void CSecSettingsServer::ConstructL() sl@0: /** sl@0: Second-phase construction initializes the superclass and sl@0: starts the server. sl@0: */ sl@0: { sl@0: CScsServer::ConstructL(SecuritySettingsServer::KShutdownPeriodUs); sl@0: sl@0: StartL(SecuritySettingsServer::KSecSettingsServerName); sl@0: } sl@0: sl@0: sl@0: sl@0: CSecSettingsServer::~CSecSettingsServer() sl@0: /** sl@0: Cleanup the server. sl@0: */ sl@0: { sl@0: } sl@0: sl@0: CScsSession* CSecSettingsServer::DoNewSessionL(const RMessage2& /*aMessage*/) sl@0: /** sl@0: Implement CScsServer by allocating a new instance of CSecSettingsSession. sl@0: sl@0: @param aMessage Standard server-side handle to message. Not used. sl@0: @return New instance of CSecSettingsSession which is owned by the sl@0: caller. sl@0: */ sl@0: { sl@0: return CSecSettingsSession::NewL(*this); sl@0: } sl@0: sl@0: sl@0: sl@0: } // End of namespace SecuritySettingsServer sl@0: // End of file