mmappcomponents/mmmtpdataprovider/mmmtpdprequestprocessor/src/crequestunknown.cpp
changeset 25 d881023c13eb
parent 0 a2952bb97e68
child 34 e257e2b6459d
equal deleted inserted replaced
21:a05c44bc3c61 25:d881023c13eb
    40 // Two-phase construction method
    40 // Two-phase construction method
    41 // -----------------------------------------------------------------------------
    41 // -----------------------------------------------------------------------------
    42 //
    42 //
    43 void CRequestUnknown::ConstructL()
    43 void CRequestUnknown::ConstructL()
    44     {
    44     {
    45     
    45     // Do nothing
    46     }
    46     }
    47 
    47 
    48 // -----------------------------------------------------------------------------
    48 // -----------------------------------------------------------------------------
    49 // CRequestUnknown::~CRequestUnknown
    49 // CRequestUnknown::~CRequestUnknown
    50 // Destructor
    50 // Destructor
    51 // -----------------------------------------------------------------------------
    51 // -----------------------------------------------------------------------------
    52 //
    52 //
    53 EXPORT_C CRequestUnknown::~CRequestUnknown()
    53 EXPORT_C CRequestUnknown::~CRequestUnknown()
    54     {
    54     {
    55     
    55     // Do nothing
    56     }
    56     }
    57 
    57 
    58 // -----------------------------------------------------------------------------
    58 // -----------------------------------------------------------------------------
    59 // CRequestUnknown::CRequestUnknown
    59 // CRequestUnknown::CRequestUnknown
    60 // Standard c++ constructor
    60 // Standard c++ constructor
    61 // -----------------------------------------------------------------------------
    61 // -----------------------------------------------------------------------------
    62 //
    62 //
    63 EXPORT_C CRequestUnknown::CRequestUnknown( MMTPDataProviderFramework& aFramework,
    63 EXPORT_C CRequestUnknown::CRequestUnknown( MMTPDataProviderFramework& aFramework,
    64     MMTPConnection& aConnection ) :
    64     MMTPConnection& aConnection ) :
    65     CRequestProcessor( aFramework, aConnection, 0, NULL )
    65         CRequestProcessor( aFramework, aConnection, 0, NULL )
    66     {
    66     {
    67     PRINT( _L( "Operation: Unknown" ) );
    67     PRINT( _L( "Operation: Unknown" ) );
    68     }
    68     }
    69 
    69 
    70 // -----------------------------------------------------------------------------
    70 // -----------------------------------------------------------------------------