mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
changed output method for all components
This commit is contained in:
parent
6f97fb2576
commit
96fb0f4534
@ -45,7 +45,7 @@ public:
|
||||
CommandLineInterface() {}
|
||||
|
||||
/// Parse command line arguments and return false if we should not continue
|
||||
bool parseArguments(int argc, char** argv);
|
||||
bool parseArguments(int _argc, char** _argv);
|
||||
/// Parse the files and create source code objects
|
||||
bool processInput();
|
||||
/// Perform actions on the input depending on provided compiler arguments
|
||||
@ -62,6 +62,12 @@ private:
|
||||
std::string const& _contract);
|
||||
void handleGasEstimation(std::string const& _contract);
|
||||
|
||||
|
||||
/// Create a file in the given directory
|
||||
/// @arg _fileName the name of the file
|
||||
/// @arg _data to be written
|
||||
void createFile(std::string const& _fileName, std::string const& _data = "");
|
||||
|
||||
/// Compiler arguments variable map
|
||||
boost::program_options::variables_map m_args;
|
||||
/// map of input files to source code strings
|
||||
|
Loading…
Reference in New Issue
Block a user