equal
deleted
inserted
replaced
|
1 /* |
|
2 * Name : Geonames.rss |
|
3 * Description : Interface collection |
|
4 * Project : This file is part of OpenMAR, an Open Mobile Augmented Reality browser |
|
5 * Website : http://OpenMAR.org |
|
6 * |
|
7 * Copyright (c) 2010 David Caabeiro |
|
8 * |
|
9 * All rights reserved. This program and the accompanying materials are made available |
|
10 * under the terms of the Eclipse Public License v1.0 which accompanies this |
|
11 * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
|
12 * |
|
13 */ |
|
14 |
|
15 #include <ecom/RegistryInfo.rh> |
|
16 |
|
17 #include "InterfaceUid.hrh" |
|
18 #include "ImplementationUid.hrh" |
|
19 |
|
20 RESOURCE REGISTRY_INFO theInfo |
|
21 { |
|
22 // UID for the DLL |
|
23 dll_uid = KDllUidValue; |
|
24 |
|
25 // Declare array of interface info |
|
26 interfaces = |
|
27 { |
|
28 INTERFACE_INFO |
|
29 { |
|
30 // UID of interface that is implemented |
|
31 interface_uid = KProviderInterfaceUidValue; |
|
32 |
|
33 implementations = |
|
34 { |
|
35 // Info for CProvider |
|
36 IMPLEMENTATION_INFO |
|
37 { |
|
38 implementation_uid = KProviderImplementationUidValue; |
|
39 version_no = 1; |
|
40 display_name = "Geonames Provider"; |
|
41 default_data = "geonames"; |
|
42 opaque_data = ""; |
|
43 } |
|
44 }; |
|
45 } |
|
46 , |
|
47 INTERFACE_INFO |
|
48 { |
|
49 // UID of interface that is implemented |
|
50 interface_uid = KObjectInterfaceUidValue; |
|
51 |
|
52 implementations = |
|
53 { |
|
54 // Info for CObject |
|
55 IMPLEMENTATION_INFO |
|
56 { |
|
57 implementation_uid = KObjectImplementationUidValue; |
|
58 version_no = 1; |
|
59 display_name = "Geonames Object"; |
|
60 default_data = "geonames"; |
|
61 opaque_data = ""; |
|
62 } |
|
63 }; |
|
64 } |
|
65 }; |
|
66 } |