mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
23 lines
476 B
C++
23 lines
476 B
C++
#ifndef __GRADIDO_LOGIN_MODEL_HEDERA_CRYPTO_CREATE_TRANSACTION_H
|
|
#define __GRADIDO_LOGIN_MODEL_HEDERA_CRYPTO_CREATE_TRANSACTION_H
|
|
|
|
#include "../../proto/hedera/CryptoCreate.pb.h"
|
|
|
|
namespace model {
|
|
namespace hedera {
|
|
|
|
class CryptoCreateTransaction
|
|
{
|
|
public:
|
|
CryptoCreateTransaction();
|
|
~CryptoCreateTransaction();
|
|
|
|
protected:
|
|
proto::CryptoCreateTransactionBody* mCryptoCreateBody;
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endif //__GRADIDO_LOGIN_MODEL_HEDERA_CRYPTO_CREATE_TRANSACTION_H
|