| 61 | { |
| 62 | public: |
| 63 | processor() : raft::kernel() |
| 64 | { |
| 65 | /** |
| 66 | * declare ports, both input and output |
| 67 | */ |
| 68 | input.addPort< int >( "in" ); |
| 69 | output.addPort< int >( "out" ); |
| 70 | } |
| 71 | |
| 72 | virtual raft::kstatus run() |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected