RNAblueprint-1.3.2
printgraph.h
Go to the documentation of this file.
1 
11 #ifndef PRINTGRAPH_H
12 #define PRINTGRAPH_H
13 
14 // include common header with graph definition and global variables
15 #include "common.h"
16 #include "graphcommon.h"
17 
18 // include standard library parts
19 #include <iostream>
20 #include <sstream>
21 
22 // include boost components
23 #include <boost/graph/graphml.hpp>
24 
25 namespace design {
26  namespace detail {
27 
28  // print the graph as a gml file to the output
29  void print_graph (Graph& g, std::ostream* out);
30 
31  // print all the subgraphs as GML (iterator over subgraphs)
32  void print_subgraphs (Graph& g, std::ostream* out);
33  }
34 }
35 #endif
36 
37 /*
38  * \endcond INTERNAL
39  */
This file holds all global includes, definitions and variables.
This file holds all important information for the dependency graph, its definition and often used fun...
All classes and functions for the RNA design library are under the design namespace.
Definition: RNAblueprint.h:101