#include <bbstdConcatStrings.h>
Protected Member Functions | |
| virtual void | bbUserConstructor () |
Private Member Functions | |
| BBTK_BLACK_BOX_INTERFACE (ConcatStrings, bbtk::AtomicBlackBox) | |
| BBTK_DECLARE_INPUT (In1, std::string) | |
| BBTK_DECLARE_INPUT (In2, std::string) | |
| BBTK_DECLARE_INPUT (In3, std::string) | |
| BBTK_DECLARE_INPUT (In4, std::string) | |
| BBTK_DECLARE_INPUT (In5, std::string) | |
| BBTK_DECLARE_INPUT (In6, std::string) | |
| BBTK_DECLARE_INPUT (In7, std::string) | |
| BBTK_DECLARE_INPUT (In8, std::string) | |
| BBTK_DECLARE_INPUT (In9, std::string) | |
| BBTK_DECLARE_INPUT (In10, std::string) | |
| BBTK_DECLARE_OUTPUT (Out, std::string) | |
| BBTK_PROCESS (DoProcess) | |
| void | DoProcess () |
Definition at line 39 of file bbstdConcatStrings.h.
| bbstd::ConcatStrings::BBTK_BLACK_BOX_INTERFACE | ( | ConcatStrings | , | |
| bbtk::AtomicBlackBox | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In1 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In2 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In3 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In4 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In5 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In6 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In7 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In8 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In9 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_INPUT | ( | In10 | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_DECLARE_OUTPUT | ( | Out | , | |
| std::string | ||||
| ) | [private] |
| bbstd::ConcatStrings::BBTK_PROCESS | ( | DoProcess | ) | [private] |
| void bbstd::ConcatStrings::DoProcess | ( | ) | [private] |
Definition at line 55 of file bbstdConcatStrings.cxx.
00056 { 00057 bbSetOutputOut( bbGetInputIn1() + 00058 bbGetInputIn2() + 00059 bbGetInputIn3() + 00060 bbGetInputIn4() + 00061 bbGetInputIn5() + 00062 bbGetInputIn6() + 00063 bbGetInputIn7() + 00064 bbGetInputIn8() + 00065 bbGetInputIn9() + 00066 bbGetInputIn10() ); 00067 }
| void bbstd::ConcatStrings::bbUserConstructor | ( | ) | [protected, virtual] |
Definition at line 40 of file bbstdConcatStrings.cxx.
00041 { 00042 bbSetInputIn1(""); 00043 bbSetInputIn2(""); 00044 bbSetInputIn3(""); 00045 bbSetInputIn4(""); 00046 bbSetInputIn5(""); 00047 bbSetInputIn6(""); 00048 bbSetInputIn7(""); 00049 bbSetInputIn8(""); 00050 bbSetInputIn9(""); 00051 bbSetInputIn10(""); 00052 }
1.5.6