const

Configuration

Input Ports

There are no input ports for this process.

Output Ports

Port name

Data Type

Flags

Description

const

_none

_const, _required

The port with the const flag set.

Pipefile Usage

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

Pipefile block

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

Process connections

The following Input ports will need to be set

# There are no input port's for this process

The following Output ports will need to be set

# This process will produce the following output ports
connect from <this-proc>.const
         to   <downstream-proc>.const

Class Description

class const_process : public sprokit::process

A process with a const output port.

\process A process with a const output port.

\oports

\oport{const} A constant datum.

\reqs

\req The \port{const} output must be connected.

Public Functions

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

Constructor.

Parameters:

config – The configuration for the process.

~const_process()

Destructor.

class priv