summaryrefslogtreecommitdiff
path: root/enhanced-position-service/franca/src/ConfigurationStubImpl.h
blob: 8492c69ce444b65c5205ebc6af0eac8a59b17ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**************************************************************************
* @licence app begin@
*
* SPDX-License-Identifier: MPL-2.0
*
* \ingroup EnhancedPositionService
* \author Marco Residori <marco.residori@xse.de>
*
* \copyright Copyright (C) 2014, XS Embedded GmbH
* 
* \license
* This Source Code Form is subject to the terms of the
* Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
* this file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* @licence end@
**************************************************************************/

#ifndef CONFIGURATIONSTUBIMPL_H_
#define CONFIGURATIONSTUBIMPL_H_

#include <CommonAPI/CommonAPI.h>
#include <org/genivi/EnhancedPositionService/ConfigurationStubDefault.h>

using namespace org::genivi::EnhancedPositionService;

class ConfigurationStubImpl: public ConfigurationStubDefault {

public:
    ConfigurationStubImpl();
    virtual ~ConfigurationStubImpl();
    void GetVersion(EnhancedPositionServiceTypes::Version& version);
    void GetSupportedSatelliteSystems(std::vector<EnhancedPositionServiceTypes::SatelliteSystem>& satelliteSystems);
    void run();
    void shutdown();

protected:
    bool validateSatSystemAttributeRequestedValue(const EnhancedPositionServiceTypes::SatelliteSystem& value);

private:
    std::vector<EnhancedPositionServiceTypes::SatelliteSystem> mSupportedSatSystems;
};

#endif /* CONFIGURATIONSTUBIMPL_H_ */