#include <argument.h>
Collaboration diagram for Kross::Api::ArgumentList:

Definition at line 111 of file argument.h.
Public Member Functions | |
| ArgumentList () | |
| ~ArgumentList () | |
| operator QValueList () | |
| ArgumentList & | operator<< (const Argument &arg) |
|
|
Constructor. Definition at line 58 of file argument.cpp.
|
|
|
Destructor. Definition at line 64 of file argument.cpp.
|
|
|
Operator to return the list of arguments call-by-reference to let code like the Callable::checkArguments method enable manipulate those list.
Definition at line 132 of file argument.h.
|
|
|
Implementation of the << operator.
Definition at line 68 of file argument.cpp. References QValueList::append(). 00069 { 00070 /* 00071 if(arg.isVisible()) { 00072 if(! arg.getObject()) 00073 m_minparams++; 00074 m_maxparams++; 00075 } 00076 */ 00077 m_arguments.append(arg); 00078 return *this; 00079 }
|
1.4.6