LRDE Tiger Compiler  1.34a $Id: 7fef12e1f5fa43449d667a0eec1d837c40fc1202 $
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
path.hxx
Go to the documentation of this file.
1 
6 #ifndef MISC_PATH_HXX
7 # define MISC_PATH_HXX
8 
9 # include <misc/path.hh>
10 
11 namespace misc
12 {
13  inline std::ostream&
14  operator<<(std::ostream& ostr, const path& p)
15  {
16  return p.dump(ostr);
17  }
18 
19  inline bool
21  {
22  return absolute_;
23  }
24 
25  inline bool
26  path::empty() const
27  {
28  return path_.empty();
29  }
30 }
31 
32 #endif // !MISC_PATH_HXX