atlas  0.6
wgraph_io.h
Go to the documentation of this file.
1 /*
2  This is wgraph_io.h
3 
4  Copyright (C) 2004,2005 Fokko du Cloux
5  part of the Atlas of Lie Groups and Representations
6 
7  For license information see the LICENSE file
8 */
9 
10 #ifndef WGRAPH_IO_H /* guard against multiple inclusions */
11 #define WGRAPH_IO_H
12 
13 #include <iosfwd>
14 
15 #include "../Atlas.h"
16 
17 namespace atlas {
18 
19 /******** function declarations *********************************************/
20 
21 namespace wgraph_io {
22 
23  void printWGraph(std::ostream&, const wgraph::WGraph&);
24 
25  void printCells(std::ostream&, const wgraph::WGraph&);
26 
27  void printWDecomposition (std::ostream&, const wgraph::DecomposedWGraph&);
28 
29 }
30 
31 }
32 
33 #endif
void printCells(std::ostream &strm, const wgraph::WGraph &wg)
Definition: wgraph_io.cpp:68
Definition: Atlas.h:38
void printWDecomposition(std::ostream &strm, const wgraph::DecomposedWGraph &g)
Definition: wgraph_io.cpp:91
void printWGraph(std::ostream &strm, const wgraph::WGraph &wg)
Definition: wgraph_io.cpp:30