Configuration

Input Ports

Port name

Data Type

Flags

Description

string

string

_required

Where strings are read from.

Output Ports

Pipefile Usage

The following sections describe the blocks needed to use this process in a pipe file.

Pipefile block

# ================================================================
process <this-proc>
  :: take_string
# ================================================================

Process connections

The following Input ports will need to be set

# This process will consume the following input ports
connect from <this-proc>.string
         to   <upstream-proc>.string

The following Output ports will need to be set

# This process will produce the following output ports

Class Description

class take_string_process : public sprokit::process

A process which takes strings.

\process Takes strings.

\iports

\iport{string} The source of strings to take.

\reqs

\req The \port{string} port must be connected.

Public Functions

take_string_process(kwiver::vital::config_block_sptr const &config)

Constructor.

Parameters:

config – The configuration for the process.

~take_string_process()

Destructor.

class priv