From 8c6bf21c01d3ae3c22301bbe0b039aa18e1f58a6 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 11 Nov 2014 17:41:48 +0100 Subject: Provide interface for calls in JSON and some other formatting changes. --- AST.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'AST.h') diff --git a/AST.h b/AST.h index 19328e5f..7b266f13 100644 --- a/AST.h +++ b/AST.h @@ -120,6 +120,8 @@ public: std::vector> const& getStateVariables() const { return m_stateVariables; } std::vector> const& getDefinedFunctions() const { return m_definedFunctions; } + /// Returns the functions that make up the calling interface in the intended order. + std::vector getInterfaceFunctions() const; private: std::vector> m_definedStructs; std::vector> m_stateVariables; -- cgit