#include <bbstdToString.h>
Private Member Functions | |
| BBTK_TEMPLATE_BLACK_BOX_INTERFACE (ToString, bbtk::AtomicBlackBox, T) | |
| BBTK_DECLARE_INPUT (In, T) | |
| BBTK_DECLARE_OUTPUT (Out, std::string) | |
| BBTK_PROCESS (DoIt) | |
| void | DoIt () |
Definition at line 42 of file bbstdToString.h.
| bbstd::ToString< T >::BBTK_TEMPLATE_BLACK_BOX_INTERFACE | ( | ToString< T > | , | |
| bbtk::AtomicBlackBox | , | |||
| T | ||||
| ) | [private] |
| bbstd::ToString< T >::BBTK_DECLARE_INPUT | ( | In | , | |
| T | ||||
| ) | [private] |
| bbstd::ToString< T >::BBTK_DECLARE_OUTPUT | ( | Out | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ToString< T >::BBTK_PROCESS | ( | DoIt | ) | [private] |
| void bbstd::ToString< T >::DoIt | ( | ) | [inline, private] |
Definition at line 46 of file bbstdToString.cxx.
00047 { 00048 std::ostringstream s; 00049 s << bbGetInputIn(); 00050 bbSetOutputOut( s.str() ); 00051 }
1.5.6