/*
	A thread-safe singleton class which can be used build up a graph of a
	program's locking order for mutexes, and check it for locking
	order violations.

	begin: Frank Hess <fmhess@users.sourceforge.net>  2007-10-26
*/

//  Distributed under the Boost Software License, Version 1.0. (See
//  accompanying file LICENSE_1_0.txt or copy at
//  http://www.boost.org/LICENSE_1_0.txt)

#ifndef _POET_MUTEX_GRAPHER_HPP
#define _POET_MUTEX_GRAPHER_HPP

#include <poet/detail/mutex_grapher_decl.hpp>
#include <poet/detail/mutex_grapher.ipp>

#endif // _POET_MUTEX_GRAPHER_HPP

