danicoin/src/CryptoNoteCore/IBlock.h

19 lines
473 B
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-08-13 10:51:37 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include "CryptoNote.h"
2014-08-13 10:51:37 +00:00
namespace CryptoNote {
2015-07-30 15:22:07 +00:00
class IBlock {
public:
2015-07-30 15:22:07 +00:00
virtual ~IBlock();
2014-08-13 10:51:37 +00:00
2015-07-30 15:22:07 +00:00
virtual const Block& getBlock() const = 0;
virtual size_t getTransactionCount() const = 0;
virtual const Transaction& getTransaction(size_t index) const = 0;
};
2014-08-13 10:51:37 +00:00
}