contentstorage/casrv/caappscanner/src/proxy.cpp
changeset 103 b99b84bcd2d1
parent 60 f62f87b200ec
equal deleted inserted replaced
83:156f692b1687 103:b99b84bcd2d1
    24 const TImplementationProxy ImplementationTable[] =
    24 const TImplementationProxy ImplementationTable[] =
    25     {
    25     {
    26     IMPLEMENTATION_PROXY_ENTRY(0x20026FAF, CCaAppScannerHandler::NewL)
    26     IMPLEMENTATION_PROXY_ENTRY(0x20026FAF, CCaAppScannerHandler::NewL)
    27     };
    27     };
    28 
    28 
       
    29 #ifdef COVERAGE_MEASUREMENT
       
    30 #pragma CTC SKIP
       
    31 #endif //COVERAGE_MEASUREMENT (proxy for instantiation)
       
    32 
    29 // Function used to return an instance of the proxy table.
    33 // Function used to return an instance of the proxy table.
    30 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
    31         TInt& aTableCount )
    35         TInt& aTableCount )
    32     {
    36     {
    33     aTableCount = sizeof( ImplementationTable )
    37     aTableCount = sizeof( ImplementationTable )
    34             / sizeof(TImplementationProxy);
    38             / sizeof(TImplementationProxy);
    35     return ImplementationTable;
    39     return ImplementationTable;
    36     }
    40     }
       
    41 
       
    42 #ifdef COVERAGE_MEASUREMENT
       
    43 #pragma CTC ENDSKIP
       
    44 #endif //COVERAGE_MEASUREMENT
       
    45 
       
    46