src/profilesmodel_p_win.cpp
changeset 0 dc71378f4890
equal deleted inserted replaced
-1:000000000000 0:dc71378f4890
       
     1 /*
       
     2 * Copyright (c) 2010 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: Profiles widget model
       
    15 *
       
    16 */
       
    17 
       
    18 // User includes
       
    19 #include "profilesmodel_p.h"
       
    20 
       
    21 /*!
       
    22     \class ProfilesModelPrivate
       
    23     \profiles widget model class
       
    24 
       
    25     This class is used to create profiles widget model
       
    26 */
       
    27 
       
    28 // ======== MEMBER FUNCTIONS ========
       
    29 
       
    30 /*!
       
    31    NewL
       
    32 */
       
    33 ProfilesModelPrivate* ProfilesModelPrivate::NewL()
       
    34 {
       
    35 }
       
    36 
       
    37 /*!
       
    38    Constructor
       
    39 */
       
    40 ProfilesModelPrivate::ProfilesModelPrivate()
       
    41 {
       
    42 }
       
    43 
       
    44 /*!
       
    45    ConstructL
       
    46 */
       
    47 void ProfilesModelPrivate::ConstructL()
       
    48 {
       
    49 }
       
    50 
       
    51 /*!
       
    52    Destroyer
       
    53 */
       
    54 ProfilesModelPrivate::~ProfilesModelPrivate()
       
    55 {
       
    56 
       
    57 }
       
    58 
       
    59 /*!
       
    60    Get the actived profile ID
       
    61 */
       
    62 int ProfilesModelPrivate::activeProfileId()
       
    63 {
       
    64     return 0;
       
    65 }
       
    66 
       
    67 /*!
       
    68    Set active profile to specified ID
       
    69 */
       
    70 int ProfilesModelPrivate::activateProfile(int)
       
    71 {
       
    72     return 0;
       
    73 }
       
    74 
       
    75 /*!
       
    76    Get actived profile name
       
    77 */
       
    78 QString ProfilesModelPrivate::activeProfileName()
       
    79 {
       
    80     return NULL;
       
    81 }