libabigail
|
The abstraction of a function call expression. More...
#include <abg-ini.h>
Public Member Functions | |
function_call_expr (const string &name, const vector< string > &args) | |
Constructor for the function_call_expr type. | |
vector< string > & | get_arguments () |
Getter for the arguments of the function call expression. | |
const vector< string > & | get_arguments () const |
Getter for the arguments of the function call expression. | |
const string & | get_name () const |
Getter of the name of the function being called. | |
function_call_expr | ( | const string & | name, |
const vector< string > & | args ) |
Constructor for the function_call_expr type.
name | the name of the function being called. |
args | a vector of the arguements of the function being called. |
Definition at line 1976 of file abg-ini.cc.
vector< string > & get_arguments | ( | ) |
Getter for the arguments of the function call expression.
That is, a getter for the arguments of the function call.
Definition at line 2003 of file abg-ini.cc.
const vector< string > & get_arguments | ( | ) | const |
Getter for the arguments of the function call expression.
That is, a getter for the arguments of the function call.
Definition at line 1994 of file abg-ini.cc.
const string & get_name | ( | ) | const |
Getter of the name of the function being called.
Definition at line 1985 of file abg-ini.cc.