secsrv_plat/gba_api/inc/gbauilityexport.h
changeset 59 881d92421467
equal deleted inserted replaced
53:25dd1e8b2663 59:881d92421467
       
     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: dll export flag definition
       
    15 */
       
    16 
       
    17 #ifndef GBAUTILITYEXPORT_H
       
    18 #define GBAUTILITYEXPORT_H
       
    19 
       
    20 #if defined(BUILD_QTGBA_DLL)
       
    21 #define QTGBADLL_EXPORT Q_DECL_EXPORT
       
    22 #else
       
    23 #define QTGBADLL_EXPORT Q_DECL_IMPORT
       
    24 #endif
       
    25 
       
    26 #endif //GBAUTILITYEXPORT_H
       
    27