public class CCodeFunction : CCodeNode {
public string name { get; set; } ;
public weak CCodeModifiers modifiers { get; set; } ;
public string return_type { get; set; } ;
public CCodeBlock block { get; set; } ;
public CCodeFunction ( string name,
string return_type ) ;
public void add_parameter ( CCodeFormalParameterparam ) ;
public CCodeFunction copy ( ) ;
}

public CCodeFunction ( string name,
string return_type ) ;
public string name { get; set; } ;
public weak CCodeModifiers modifiers { get; set; } ;
public string return_type { get; set; } ;
public CCodeBlock block { get; set; } ;
public void add_parameter ( CCodeFormalParameterparam ) ;
public CCodeFunction copy ( ) ;
Created by Valadoc