27 lines
585 B
C++
27 lines
585 B
C++
#ifndef __PLASP__SAS__DEBUGGING_H
|
|
#define __PLASP__SAS__DEBUGGING_H
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <plasp/sas/Description.h>
|
|
|
|
namespace plasp
|
|
{
|
|
namespace sas
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Debugging
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
utils::LogStream &operator<<(utils::LogStream &ostream, const Description &description);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|