homescreenapp/hsdomainmodel/inc/hsdocumentloader.h
changeset 69 87476091b3f5
equal deleted inserted replaced
67:474929a40a0f 69:87476091b3f5
       
     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:  Homescreen document loader class.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef HSDOCUMENTLOADER_H
       
    19 #define HSDOCUMENTLOADER_H
       
    20 
       
    21 #include <hbdocumentloader.h>
       
    22 #include "hstest_global.h"
       
    23 
       
    24 HOMESCREEN_TEST_CLASS(TestHsDomainModel)
       
    25 
       
    26 class HsDocumentLoader : public HbDocumentLoader
       
    27 {
       
    28 public:
       
    29     HsDocumentLoader();
       
    30     virtual ~HsDocumentLoader();
       
    31 
       
    32 public:
       
    33     QObject *createObject(const QString &type, const QString &name);
       
    34 
       
    35 private:
       
    36 
       
    37     Q_DISABLE_COPY(HsDocumentLoader)
       
    38 
       
    39     HOMESCREEN_TEST_FRIEND_CLASS(TestHsDomainModel)
       
    40 };
       
    41 
       
    42 #endif