![]() |
ircproxy The Ultimate Cyborg |
#include <Expression.h>
Definition at line 32 of file Expression.h.
Friends | |
| std::ostream & | operator<< (std::ostream &os, ExpressionEventType const &event_type) |
| For debugging purposes. Write a ExpressionEventType to os. | |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| ExpressionEventType const & | event_type | |||
| ) | [friend] |
For debugging purposes. Write a ExpressionEventType to os.
Definition at line 494 of file debug_ostream_operators.cc.
00495 { 00496 os << "{expression_value:" << (event_type.M_expression_value ? "true" : "false"); 00497 os << ", expression:\""; 00498 event_type.M_expression->print_on(os); 00499 return os << "\"}"; 00500 }
| Copyright © 2005-2007 Carlo Wood. All rights reserved. |
|---|