mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-30 23:42:30 +03:00
9 lines
156 B
C++
9 lines
156 B
C++
|
#ifndef UTIL_USAGE__
|
||
|
#define UTIL_USAGE__
|
||
|
#include <iosfwd>
|
||
|
|
||
|
namespace util {
|
||
|
void PrintUsage(std::ostream &to);
|
||
|
} // namespace util
|
||
|
#endif // UTIL_USAGE__
|