|
void | process () override |
|
| AtomicComponent (SignalFlowContext const &context, char const *name, CompositeComponent *parent=nullptr) |
|
| AtomicComponent (AtomicComponent const &)=delete |
|
| AtomicComponent (AtomicComponent &&)=delete |
|
| AtomicComponent (SignalFlowContext const &context, char const *name, CompositeComponent *parent=nullptr) |
|
| AtomicComponent (AtomicComponent const &)=delete |
|
| AtomicComponent (AtomicComponent &&)=delete |
|
virtual | ~AtomicComponent () override |
|
| Component (SignalFlowContext const &context, char const *componentName, CompositeComponent *parent) |
|
| Component (SignalFlowContext const &context, std::string const &componentName, CompositeComponent *parent) |
|
| Component (Component const &)=delete |
|
| Component (Component &&)=delete |
|
Component & | operator= (Component const &)=delete |
|
Component & | operator= (Component &&)=delete |
|
virtual | ~Component () |
|
std::string const & | name () const |
|
std::string | fullName () const |
|
void | status (StatusMessage::Kind status, char const *message) |
|
template<typename ... MessageArgs> |
void | status (StatusMessage::Kind status, MessageArgs ... args) |
|
bool | isComposite () const |
|
AudioPortBase & | audioPort (char const *portName) |
|
AudioPortBase const & | audioPort (char const *portName) const |
|
AudioPortBase & | audioPort (std::string const &portName) |
|
AudioPortBase const & | audioPort (std::string const &portName) const |
|
ParameterPortBase & | parameterPort (char const *portName) |
|
ParameterPortBase const & | parameterPort (char const *portName) const |
|
ParameterPortBase & | parameterPort (std::string const &portName) |
|
ParameterPortBase const & | parameterPort (std::string const &portName) const |
|
SamplingFrequencyType | samplingFrequency () const |
|
std::size_t | period () const |
|
bool | isTopLevel () const |
|
impl::ComponentImplementation & | implementation () |
|
impl::ComponentImplementation const & | implementation () const |
|
◆ AtomicComponent() [1/3]
visr::AtomicComponent::AtomicComponent |
|
explicit |
Constructor.
- Parameters
-
context | a signal flow context structure containing general parameters, e.g., sampling rate and block size of computation. |
name | Null-terminated character string containing the name. Name must be unique within the containing composite component (if there is one). |
parent | A composite component to contain this atom, If it is a null pointer (the default), then this component is at the top level. |
◆ AtomicComponent() [2/3]
visr::AtomicComponent::AtomicComponent |
|
delete |
Deleted move constructor to avoid move construction.
◆ AtomicComponent() [3/3]
visr::AtomicComponent::AtomicComponent |
|
delete |
Deleted copy constructor to avoid copying.
◆ process()
void visr::python::visr::AtomicComponentWrapper::process |
( |
| ) |
|
|
inlineoverridevirtual |
Pure virtual process() function. The overriding methods of base classes are called in regular intervals, each processing a fixed number (context.period()
) number of samples.
Implements visr::AtomicComponent.
The documentation for this class was generated from the following file: