#include <iostream.h>
Go to the source code of this file.
Functions | |
void | agent_print (const T &var) |
void | agent_println (const T &var) |
Definition in file print.h.
|
Definition at line 33 of file print.cpp. Referenced by debug_agent().
00034 { 00035 std::cout << var; 00036 } |
|
Definition at line 45 of file print.cpp. Referenced by debug_agent(), and main().
00046 { 00047 std::cout << var << std::endl; 00048 } |