phoneapp/phoneringingtoneplayer/tsrc/t_phoneringingtoneplayer/main.cpp
changeset 78 baacf668fe89
parent 76 cfea66083b62
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <hbapplication.h>
       
    19 #include <hbmainwindow.h>
       
    20 #include "t_phoneringingtoneplayer.h"
       
    21 
       
    22 
       
    23 int main(int argc, char *argv[])
       
    24 {
       
    25     HbApplication app (argc, argv); 
       
    26     // main window widget instantiated. 
       
    27     // includes decorators such as signal strength and battery life indicator.
       
    28     HbMainWindow mainWindow;    
       
    29     t_phoneringingtoneplayer* player = new t_phoneringingtoneplayer ();
       
    30     mainWindow.addView(player);
       
    31     mainWindow.setCurrentView(player);
       
    32     mainWindow.show();
       
    33     return app.exec();
       
    34 }