mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 13:50:35 +02:00
25 lines
550 B
C++
25 lines
550 B
C++
//
|
|
// Ledger.h
|
|
// interface/src/commerce
|
|
//
|
|
// Bottlenecks all interaction with the blockchain or other ledger system.
|
|
//
|
|
// Created by Howard Stearns on 8/4/17.
|
|
// Copyright 2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_Ledger_h
|
|
#define hifi_Ledger_h
|
|
|
|
#include <DependencyManager.h>
|
|
|
|
class Ledger : public QObject, public Dependency {
|
|
Q_OBJECT
|
|
SINGLETON_DEPENDENCY
|
|
|
|
};
|
|
|
|
#endif // hifi_Ledger_h
|