upnpsharing/upnpsharingalgorithm/inc/upnpsharingalgorithmfactory.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
       
     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:  Factory for UPnPSharingAlgorithm
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_UPNP_SHARING_ALGORITHM_FACTORY_H
       
    20 #define C_UPNP_SHARING_ALGORITHM_FACTORY_H
       
    21 
       
    22 #include <e32std.h>
       
    23 #include <e32base.h>
       
    24 
       
    25 // Forward declarations
       
    26 class MUpnpSharingAlgorithm;
       
    27 
       
    28 /**
       
    29  * Factory for UPnPSharingAlgorithm
       
    30  *
       
    31  * @lib upnpsharingalgorithm.lib
       
    32  * @since S60 5.2
       
    33  */
       
    34 class CUPnPSharingAlgorithmFactory : public CBase
       
    35     {
       
    36 
       
    37 public:
       
    38 
       
    39     /**
       
    40      * Creates a new instance of UpnpSharingAlgorithm
       
    41      *
       
    42      * @since S60 5.2
       
    43      * @return  pointer of type MUpnpSharingAlgorithm class
       
    44      */
       
    45     IMPORT_C static MUpnpSharingAlgorithm* NewSharingApiL();
       
    46 
       
    47     };
       
    48 
       
    49 #endif // C_UPNP_SHARING_ALGORITHM_FACTORY_H
       
    50 // End of file