diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-10 03:29:29 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-10 03:29:29 +0800 |
commit | d377ad3fb13dda6e8a629adfe7484359bda0706d (patch) | |
tree | c740795bcbdb3d4bbfffa90806b929503459017f /CommandLineInterface.h | |
parent | e851d2173daea4f464d5f72910bb2934c0596a65 (diff) | |
download | dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar.gz dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar.bz2 dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar.lz dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar.xz dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.tar.zst dexon-solidity-d377ad3fb13dda6e8a629adfe7484359bda0706d.zip |
Cleaner interface for Solc CLI bytecode handling
Diffstat (limited to 'CommandLineInterface.h')
-rw-r--r-- | CommandLineInterface.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/CommandLineInterface.h b/CommandLineInterface.h index 8eb1fff3..7e3ad250 100644 --- a/CommandLineInterface.h +++ b/CommandLineInterface.h @@ -53,10 +53,9 @@ public: void actOnInput(); private: - void handleBytecode(std::string const& _argName, - std::string const& _title, - std::string const& _contract, - std::string const& _suffix); + void handleBinary(std::string const& _contract); + void handleOpcode(std::string const& _contract); + void handleBytecode(std::string const& _contract); void handleJson(DocumentationType _type, std::string const& _contract); |