controlpanelui/src/tonefetcher/src/main.cpp
author hgs
Fri, 25 Jun 2010 17:12:20 +0800
changeset 22 a5692c68d772
parent 19 36aa4756ee82
child 29 313976a11e23
permissions -rw-r--r--
201025

/*
 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 * 
 * Contributors:
 *
 * 
 * Description:
 *     The main function for Tone Fetcher
 */

#include "tonefetcher.h"
#include "tonefetchermainwindow.h"
#include <hbapplication.h>
#include <tonefetcherlogger.h>

int main(int argc, char *argv[])
{
    HbApplication a(argc, argv);
    
    
    Logger::instance(TONEFETCHER_LOGGER_NAME)->configure(
            TF_LOGGER_CONFIG_PATH,QSettings::IniFormat);

    TF_LOG("Entering tonefetcher.exe...");
    ToneFetcherMainWindow w;   
    w.show();
    return a.exec();
}