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