mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 01:37:53 +00:00
15 lines
238 B
C
15 lines
238 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_GLOBALS_H
|
||
|
#define FEATHER_GLOBALS_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
|
||
|
namespace globals
|
||
|
{
|
||
|
const qreal cdiv = 1e12;
|
||
|
}
|
||
|
|
||
|
#endif //FEATHER_GLOBALS_H
|