equal
deleted
inserted
replaced
|
1 /* |
|
2 * Name : SettingManager.cpp |
|
3 * Description : Manages application settings |
|
4 * Project : This file is part of OpenMAR, an Open Mobile Augmented Reality browser |
|
5 * Website : http://OpenMAR.org |
|
6 * |
|
7 * Copyright (c) 2010 David Caabeiro |
|
8 * |
|
9 * All rights reserved. This program and the accompanying materials are made available |
|
10 * under the terms of the Eclipse Public License v1.0 which accompanies this |
|
11 * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
|
12 * |
|
13 */ |
|
14 |
|
15 #include "SettingManager.h" |
|
16 |
|
17 CSettingManager* CSettingManager::NewL() |
|
18 { |
|
19 CSettingManager* self = new(ELeave) CSettingManager; |
|
20 CleanupStack::PushL(self); |
|
21 self->ConstructL(); |
|
22 CleanupStack::Pop(self); |
|
23 |
|
24 return self; |
|
25 } |
|
26 |
|
27 CSettingManager::~CSettingManager() |
|
28 { |
|
29 } |
|
30 |
|
31 CSettingManager::CSettingManager() |
|
32 { |
|
33 } |
|
34 |
|
35 void CSettingManager::ConstructL() |
|
36 { |
|
37 } |