author | Sebastian Brannstrom <sebastianb@symbian.org> |
Wed, 07 Jul 2010 20:22:34 +0100 | |
changeset 165 | d886725e4499 |
parent 35 | 66c5303f3610 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef METADATAREADEROBSERVER_H_ |
|
20 |
#define METADATAREADEROBSERVER_H_ |
|
21 |
||
22 |
class MMetaDataReaderObserver { |
|
23 |
public: |
|
35
66c5303f3610
A ton of CodeScanner fixes (high issues) - but not all
Brendan Donegan <brendand@symbian.org>
parents:
2
diff
changeset
|
24 |
virtual void ReadMetaDataL(CShowInfo& aShowInfo) = 0; |
2 | 25 |
virtual void ReadMetaDataCompleteL() = 0; |
26 |
}; |
|
27 |
||
28 |
#endif /*METADATAREADEROBSERVER_H_*/ |