mirror of
https://github.com/boostorg/regression.git
synced 2026-01-19 04:42:10 +00:00
26 lines
558 B
C++
26 lines
558 B
C++
// html.hpp
|
|
//
|
|
// Copyright (c) 2010
|
|
// Steven Watanabe
|
|
//
|
|
// 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 HTML_HPP_INCLUDED
|
|
#define HTML_HPP_INCLUDED
|
|
|
|
namespace boost {
|
|
namespace regression {
|
|
|
|
extern const char* const issues_legend;
|
|
extern const char* const library_user_legend;
|
|
extern const char* const library_developer_legend;
|
|
extern const char* const summary_user_legend;
|
|
extern const char* const summary_developer_legend;
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|