os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingsserver.cpp
Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Implements CSecSettingsServer. See class and function definitions for
25 #include "secsettingsserver.h"
26 #include <e32property.h>
29 namespace SecuritySettingsServer
31 CSecSettingsServer* CSecSettingsServer::NewLC()
33 Factory function allocates new, initialized instance of
34 CSecSettingsServer which is left on the cleanup stack.
36 @return New, initialized instance of CSecSettingsServer
37 which is left on the cleanup stack.
40 CSecSettingsServer* self = new(ELeave) CSecSettingsServer();
41 CleanupStack::PushL(self);
46 CSecSettingsServer::CSecSettingsServer()
48 Initializes the superclass with this server's version.
50 : CScsServer(SecuritySettingsServer::Version(), EPriorityStandard)
55 void CSecSettingsServer::ConstructL()
57 Second-phase construction initializes the superclass and
61 CScsServer::ConstructL(SecuritySettingsServer::KShutdownPeriodUs);
63 StartL(SecuritySettingsServer::KSecSettingsServerName);
68 CSecSettingsServer::~CSecSettingsServer()
75 CScsSession* CSecSettingsServer::DoNewSessionL(const RMessage2& /*aMessage*/)
77 Implement CScsServer by allocating a new instance of CSecSettingsSession.
79 @param aMessage Standard server-side handle to message. Not used.
80 @return New instance of CSecSettingsSession which is owned by the
84 return CSecSettingsSession::NewL(*this);
89 } // End of namespace SecuritySettingsServer