blob: e6b0ad5c52f2543caaa208da5f6f93cbef77b4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef ALONE_ASSEMBLE__
#define ALONE_ASSEMBLE__
#include <iosfwd>
namespace search {
class Final;
} // namespace search
namespace alone {
std::ostream &operator<<(std::ostream &o, const search::Final &final);
void DetailedFinal(std::ostream &o, const search::Final &final, const char *indent_str = " ");
// This isn't called anywhere but makes it easy to print from gdb.
void PrintFinal(const search::Final &final);
} // namespace alone
#endif // ALONE_ASSEMBLE__
|