All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
ntesukiResult.cc
Go to the documentation of this file.
2 #include <iostream>
3 
4 std::ostream&
6 {
7 
8  if (osl::ntesuki::NTESUKI_YES == nr)
9  {
10  return os << "NTESUKI_YES";
11  }
12  else if (osl::ntesuki::NTESUKI_NO == nr)
13  {
14  return os << "NTESUKI_NO";
15  }
16  assert (osl::ntesuki::isUnknown(nr));
17 
18  return os << "NTESUKI_UNKNOWN("
19  << osl::ntesuki::getDepth(nr)
20  << ")";
21 }
22 
23 // ;;; Local Variables:
24 // ;;; mode:c++
25 // ;;; c-basic-offset:2
26 // ;;; End: