fbgsense 0.1
Generic FBG spectrum analysis tool
decimal_comma.h
1/*
2 * This file is a part of the project "fbgsense", which is released under MIT license.
3 * Copyright (c) 2022 Daniel Múčka, Masaryk University, Faculty of Informatics
4 * See file LICENSE or visit https://opensource.org/licenses/MIT for full license details.
5 */
6
7#pragma once
8
9#include <iomanip>
10
14struct decimal_comma : std::numpunct<char> {
15 char_type do_decimal_point() const override { return ','; }
16};
Forces decimal comma for numbers instead of a dot.
Definition: decimal_comma.h:14