mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-24 11:35:52 +00:00
14 lines
238 B
C++
14 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
|