diff options
author | Christian <c@ethdev.com> | 2014-11-12 00:41:48 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-12 00:41:48 +0800 |
commit | 8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6 (patch) | |
tree | ba26de04d610fcc09c96f366a35bb148180a4e21 /AST.h | |
parent | a0c72065fee89c4558eeb4a98e5273633635bc39 (diff) | |
download | dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.gz dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.bz2 dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.lz dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.xz dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.tar.zst dexon-solidity-8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6.zip |
Provide interface for calls in JSON and some other formatting changes.
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -120,6 +120,8 @@ public: std::vector<ASTPointer<VariableDeclaration>> const& getStateVariables() const { return m_stateVariables; } std::vector<ASTPointer<FunctionDefinition>> const& getDefinedFunctions() const { return m_definedFunctions; } + /// Returns the functions that make up the calling interface in the intended order. + std::vector<FunctionDefinition const*> getInterfaceFunctions() const; private: std::vector<ASTPointer<StructDefinition>> m_definedStructs; std::vector<ASTPointer<VariableDeclaration>> m_stateVariables; |