1 2 3 4 5 6 7 8 9
#ifndef HG_UNION_H_ #define HG_UNION_H_ class Hypergraph; namespace HG { void Union(const Hypergraph& in, Hypergraph* out); }; #endif