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