diff options
author | Gav Wood <i@gavwood.com> | 2015-01-09 07:22:06 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-09 07:22:06 +0800 |
commit | ffce12b7ee412cbd29dd0873a3e894dd7133ca4e (patch) | |
tree | 867881a37367a42b910a6182499054d8ae127170 /InterfaceHandler.h | |
parent | d18fa27b6a48540298e835ad324152566586c65c (diff) | |
download | dexon-solidity-ffce12b7ee412cbd29dd0873a3e894dd7133ca4e.tar.gz dexon-solidity-ffce12b7ee412cbd29dd0873a3e894dd7133ca4e.tar.zst dexon-solidity-ffce12b7ee412cbd29dd0873a3e894dd7133ca4e.zip |
Basic logging in Solidity (though no tests yet).
Diffstat (limited to 'InterfaceHandler.h')
-rw-r--r-- | InterfaceHandler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/InterfaceHandler.h b/InterfaceHandler.h index c8399d71..2b62cabd 100644 --- a/InterfaceHandler.h +++ b/InterfaceHandler.h @@ -74,6 +74,7 @@ public: /// @return A unique pointer contained string with the json /// representation of the contract's ABI Interface std::unique_ptr<std::string> getABIInterface(ContractDefinition const& _contractDef); + std::unique_ptr<std::string> getABISolidityInterface(ContractDefinition const& _contractDef); /// Get the User documentation of the contract /// @param _contractDef The contract definition /// @return A unique pointer contained string with the json |