Fixposition SDK 0.0.0-heads/main-0-g7b59b93
Collection of c++ libraries and apps for use with Fixposition products
Loading...
Searching...
No Matches
utils.hpp
Go to the documentation of this file.
1/**
2 * \verbatim
3 * ___ ___
4 * \ \ / /
5 * \ \/ / Copyright (c) Fixposition AG (www.fixposition.com) and contributors
6 * / /\ \ License: see the LICENSE file
7 * /__/ \__\
8 * \endverbatim
9 *
10 * @file
11 * @brief Fixposition SDK: Utilities
12 *
13 * @page FPSDK_COMMON_UTILS Utilities
14 *
15 * **API**: fpsdk_common/utils.hpp and fpsdk::common::utils
16 *
17 */
18#ifndef __FPSDK_COMMON_UTILS_HPP__
19#define __FPSDK_COMMON_UTILS_HPP__
20
21/* LIBC/STL */
22
23/* EXTERNAL */
24
25/* PACKAGE */
26
27namespace fpsdk {
28namespace common {
29/**
30 * @brief Utilities
31 */
32namespace utils {
33/* ****************************************************************************************************************** */
34
35/**
36 * @brief Get version string
37 *
38 * @returns the version string (e.g. "0.0.0-heads/feature/something-0-gf61ae50-dirty")
39 */
40const char* GetVersionString();
41
42/**
43 * @brief Get copyright string
44 *
45 * @returns the copyright string
46 */
47const char* GetCopyrightString();
48
49/**
50 * @brief Get license string
51 *
52 * @returns the license string
53 */
54const char* GetLicenseString();
55
56/* ****************************************************************************************************************** */
57} // namespace utils
58} // namespace common
59} // namespace fpsdk
60#endif // __FPSDK_COMMON_UTILS_HPP__
const char * GetVersionString()
Get version string.
const char * GetLicenseString()
Get license string.
const char * GetCopyrightString()
Get copyright string.
Fixposition SDK.
Definition fpsdk_doc.hpp:20