13#ifndef SST_CORE_DOT_CONFIG_OUTPUT_H
14#define SST_CORE_DOT_CONFIG_OUTPUT_H
16#include "sst/core/configGraph.h"
17#include "sst/core/configGraphOutput.h"
23class DotConfigGraphOutput :
public ConfigGraphOutput
26 explicit DotConfigGraphOutput(
const char* path);
30 void generateDot(
const ConfigComponent* comp,
const ConfigLinkMap_t& linkMap,
const uint32_t dot_verbosity)
const;
31 void generateDot(
const ConfigComponent* comp,
const ConfigLinkMap_t& linkMap,
const uint32_t dot_verbosity,
33 void generateDot(
const ConfigLink* link,
const uint32_t dot_verbosity)
const;
Represents the configuration of a generic component.
Definition configGraph.h:263
A Configuration Graph A graph representing Components and Links.
Definition configGraph.h:450
Represents the configuration of a generic Link.
Definition configGraph.h:50
Class to contain SST Simulation Configuration variables.
Definition config.h:41
virtual void generate(const Config *cfg, ConfigGraph *graph) override
Definition dotConfigOutput.cc:27