screensaverapp/screensaverproviders/snsrbigclockscreensaverprovider/snsrclockwidgets/src/snsrstyleoptionanalogclock.cpp
equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Style option for analog clock widget. |
|
15 * |
|
16 */ |
|
17 |
|
18 #include "snsrstyleoptionanalogclock.h" |
|
19 |
|
20 /*! |
|
21 \class SnsrStyleOptionAnalogClock |
|
22 \ingroup group_snsrbigclockscreensaverprovider |
|
23 \brief Style option for analog clock widget. |
|
24 */ |
|
25 |
|
26 /*! |
|
27 Constructs a new SnsrStyleOptionAnalogClock. |
|
28 */ |
|
29 SnsrStyleOptionAnalogClock::SnsrStyleOptionAnalogClock(): |
|
30 HbStyleOption(), mM(0), mH(0) |
|
31 { |
|
32 type = Type; |
|
33 version = Version; |
|
34 } |
|
35 |
|
36 /*! |
|
37 Copy constructor - constructs a new SnsrStyleOptionAnalogClock. |
|
38 */ |
|
39 SnsrStyleOptionAnalogClock::SnsrStyleOptionAnalogClock(const SnsrStyleOptionAnalogClock &other) : |
|
40 HbStyleOption(other), mM(other.mM), mH(other.mH) |
|
41 { |
|
42 type = Type; |
|
43 version = Version; |
|
44 } |
|
45 |
|
46 /*! |
|
47 Destructs the class. |
|
48 */ |
|
49 SnsrStyleOptionAnalogClock::~SnsrStyleOptionAnalogClock() |
|
50 { |
|
51 } |
|