Output.h File
Output node for terminal pipeline output. More...
Included Headers
#include "builder/Node.h"
#include <memory>
#include <utility>
#include <vector>
Namespaces Index
| namespace | simaai |
| namespace | neat |
| namespace | nodes |
Classes Index
| struct | OutputOptions |
| class | Output |
Description
Output node for terminal pipeline output.
File Listing
The file content with the documentation metadata removed is:
14namespace simaai::neat {
16struct OutputOptions {
17 int max_buffers = 1;
21 static OutputOptions Latest();
22 static OutputOptions EveryFrame(int max_buffers = 30);
23 static OutputOptions Clocked(int max_buffers = 1);
29 explicit Output(OutputOptions opt) : opt_(std::move(opt)) {}
31 const OutputOptions& options() const {
38 NodeCapsBehavior caps_behavior() const override {
41 std::string backend_fragment(int node_index) const override;
42 std::vector<std::string> element_names(int node_index) const override;
45 OutputOptions opt_;
50namespace simaai::neat::nodes {
51std::shared_ptr<simaai::neat::Node> Output(OutputOptions opt = {});
Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.9.1.