/* * fragmentation_helpers.hpp * * Created on: Oct 18, 2011 * Author: heber */ #ifndef FRAGMENTATION_HELPERS_HPP_ #define FRAGMENTATION_HELPERS_HPP_ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include typedef std::deque KeyStack; class Graph; class KeySet; class molecule; void PrintAtomMask(bool *AtomMask, int AtomCount); int CombineAllOrderListIntoOne(Graph *&FragmentList, Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol); void FreeAllOrdersList(Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol); #endif /* FRAGMENTATION_HELPERS_HPP_ */