DirectPrint/DirectPrintApp/engine/inc/directprintprintsettings.h
changeset 19 2275db202402
parent 11 613a5ff70823
equal deleted inserted replaced
2:acc370d7f2f6 19:2275db202402
       
     1 /*
       
     2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * {Description of the file}
       
    16 *
       
    17 */
       
    18 
       
    19 // Protection against nested includes
       
    20 #ifndef DIRECTPRINTPRINTSETTINGS_H
       
    21 #define DIRECTPRINTPRINTSETTINGS_H
       
    22 
       
    23 // System includes
       
    24 #include <e32std.h>
       
    25 #include <e32base.h>
       
    26 
       
    27 // Forward declarations
       
    28 class CDirectPrintBaseCapability;
       
    29 
       
    30 /**
       
    31  *
       
    32  * Interface to use the device discovery functionality of Image Print Engine
       
    33  *
       
    34  */
       
    35 class CDirectPrintPrintSettings : public CBase
       
    36     {
       
    37     public:     // Constructors and destructors
       
    38 
       
    39         /**
       
    40          *  Constructor
       
    41          */
       
    42         CDirectPrintPrintSettings();
       
    43 
       
    44         /**
       
    45          *  Destructor
       
    46          */
       
    47         virtual ~CDirectPrintPrintSettings();
       
    48 
       
    49     public:     // New methods
       
    50 
       
    51         CDirectPrintPrintSettings* CloneL();
       
    52 
       
    53 	public:		// Data
       
    54 
       
    55         // Capability list
       
    56         RPointerArray<CDirectPrintBaseCapability> iCapabilities;
       
    57     };
       
    58 
       
    59 #endif //  DIRECTPRINTPRINTSETTINGS_H
       
    60 
       
    61 //  End of File