videoeditorengine/vedtranscoder/src/Ctrtranscoder.cpp
changeset 0 951a5db380a0
equal deleted inserted replaced
-1:000000000000 0:951a5db380a0
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description:  
       
    16 * Transcoder.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include "ctrtranscoder.h"
       
    24 #include "ctrtranscoderimp.h"
       
    25 
       
    26 
       
    27 
       
    28 // ============================ MEMBER FUNCTIONS ===============================
       
    29 
       
    30 // -----------------------------------------------------------------------------
       
    31 // CTRTranscoder::NewL
       
    32 // Two-phased constructor.
       
    33 // -----------------------------------------------------------------------------
       
    34 //
       
    35 EXPORT_C CTRTranscoder* CTRTranscoder::NewL(MTRTranscoderObserver& aObserver)
       
    36     {
       
    37     CTRTranscoderImp* self = CTRTranscoderImp::NewL(aObserver);
       
    38     return self;
       
    39     }
       
    40 
       
    41 
       
    42 // ---------------------------------------------------------
       
    43 // CTRTranscoder::~CTRTranscoder()
       
    44 // Destructor
       
    45 // ---------------------------------------------------------
       
    46 //
       
    47 CTRTranscoder::~CTRTranscoder()
       
    48     {
       
    49     }
       
    50 
       
    51 
       
    52 
       
    53 #ifndef EKA2
       
    54 
       
    55 // -----------------------------------------------------------------------------
       
    56 // E32Dll DLL Entry point
       
    57 // -----------------------------------------------------------------------------
       
    58 //
       
    59 GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
       
    60     {
       
    61     return(KErrNone);
       
    62     }
       
    63 
       
    64 #endif
       
    65 
       
    66 
       
    67 // End of file