// Description: Depth-first traversal of a graph
#ifndef PASTELSYS_DEPTH_FIRST_TRAVERSAL_H
#define PASTELSYS_DEPTH_FIRST_TRAVERSAL_H
#include "pastel/sys/graph/graph_traversal_concepts.h"
#include "pastel/sys/graph/generic_traversal.h"
namespace Pastel
{
//! A graph-traversal algorithm for depth-first traversal.
class DepthFirst_GraphTraversal;
}
#include "pastel/sys/graph/depth_first/depth_first.hpp"
#endif