-
Notifications
You must be signed in to change notification settings - Fork 688
Expand file tree
/
Copy pathstring_converter.h
More file actions
55 lines (46 loc) · 1.67 KB
/
string_converter.h
File metadata and controls
55 lines (46 loc) · 1.67 KB
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
47
48
49
50
51
52
53
54
55
/*!
* \file string_converter.h
* \brief Interface of a class that interprets the contents of a string
* and converts it into different types.
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
*
* -----------------------------------------------------------------------------
*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
* This file is part of GNSS-SDR.
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -----------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_STRING_CONVERTER_H
#define GNSS_SDR_STRING_CONVERTER_H
#include <cstdint>
#include <string>
/** \addtogroup Core
* \{ */
/** \addtogroup Core_Receiver_Library
* \{ */
/*!
* \brief Class that interprets the contents of a string
* and converts it into different types.
*/
class StringConverter
{
public:
StringConverter() = default;
~StringConverter() = default;
bool convert(const std::string& value, bool default_value);
int64_t convert(const std::string& value, int64_t default_value);
uint64_t convert(const std::string& value, uint64_t default_value);
int32_t convert(const std::string& value, int32_t default_value);
uint32_t convert(const std::string& value, uint32_t default_value);
int16_t convert(const std::string& value, int16_t default_value);
uint16_t convert(const std::string& value, uint16_t default_value);
float convert(const std::string& value, float default_value);
double convert(const std::string& value, double default_value);
};
/** \} */
/** \} */
#endif // GNSS_SDR_STRING_CONVERTER_H