inputmethods/inc/TestOcrObserver.h
branchSymbian2
changeset 1 8758140453c0
child 6 c108117318cb
equal deleted inserted replaced
0:e8c1ea2c6496 1:8758140453c0
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Symbian Foundation License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  test ocrsrv.h
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef TESTOCROBSERVER_H
       
    19 #define TESTOCROBSERVER_H
       
    20 
       
    21 #include <ocrsrv.h>
       
    22 
       
    23 /**
       
    24  *  CTestNotesControl is used to add setting page control in its window
       
    25  */
       
    26 class TTestOcrObserver : public MOCREngineObserver
       
    27     {
       
    28 public:
       
    29     // from MOCREngineObserver
       
    30     void RecognizeBlockComplete( TInt /*aError*/, const TOCRTextRgnInfo* /*aBlocks*/, const TInt /*aBlockCount*/ ) {}
       
    31     void RecognizeSpecialRegionComplete( TInt /*aError*/, const TOCRTextRgnInfo* /*aBlocks*/, const TInt /*aBlockCount*/ ) {}
       
    32     void RecognizeComplete( TInt /*aError*/, const TOCRTextRgnInfo* /*aBlocks*/, const TInt /*aBlockCount*/ ) {}
       
    33     void LayoutComplete( TInt /*aError*/, const TOCRBlockInfo* /*aBlocks*/, const TInt /*aBlockCount*/ ) {}
       
    34     void RecognizeProcess( const TUint /*aPercent*/ ) {}
       
    35     };
       
    36 
       
    37 #endif /*TESTOCROBSERVER_H*/