Guest User

Example source code

a guest
Nov 16th, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <boost/filesystem.hpp>
  2.  
  3.  
  4. int main(int, char**)
  5. {
  6.   boost::filesystem::path p("/tmp");
  7.  
  8.   if(p.has_branch_path())
  9.     return 1;
  10.  
  11.   return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment