changed attributes of header files
[platform/core/location/maps-plugin-here.git] / inc / engine / debug / EchoQuery.h
1 /*
2  * Copyright (C) 2013 HERE Global B.V. All rights reserved.
3  * This software, including documentation, is protected by copyright controlled by
4  * HERE Global B.V. (“Software”). All rights are reserved. Copying, including reproducing,
5  * storing, adapting or translating, any or all of this material requires the prior
6  * written consent of HERE Global B.V. You may use this
7  * Software in accordance with the terms and conditions defined in the
8  * HERE Location Platform Services Terms and Conditions, available at
9  * http://developer.here.com/terms-conditions-base
10  *
11  * As an additional permission to the above, you may distribute Software,
12  * in object code format as part of an Application, according to, and subject to, terms and
13  * conditions defined in the Tizen Software Development kit (“SDK”) License Agreement.
14  * You may distribute such object code format Application under terms of your choice,
15  * provided that the header and source files of the Software have not been modified.
16  */
17
18 #ifndef ECHOQUERY_H
19 #define ECHOQUERY_H
20
21 #include "common/HereMaps_global.h"
22
23 #include "common/BaseQuery.h"
24
25 HERE_MAPS_BEGIN_NAMESPACE
26
27 class EchoQuery : public BaseQuery
28 {
29 public:
30     EchoQuery(unsigned int data);
31     ~EchoQuery();
32
33     virtual bool Execute(QueryListener& rListener, Tizen::Maps::HereObject* pUserData = NULL) const;
34
35 private:
36     HERE_MAPS_NO_COPY_NO_ASSIGN(EchoQuery);
37
38     class EchoQueryImpl;
39     EchoQueryImpl* m_pImpl;
40 };
41
42 HERE_MAPS_END_NAMESPACE
43
44 #endif