Home | History | Annotate | Download | only in path.query
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // UNSUPPORTED: c++98, c++03
     11 
     12 // <experimental/filesystem>
     13 
     14 // class path
     15 
     16 //-------------------------------
     17 // 8.4.10 path query [path.query]
     18 //-------------------------------
     19 // bool empty() const noexcept;
     20 // bool has_root_path() const;
     21 // bool has_root_name() const;
     22 // bool has_root_directory() const;
     23 // bool has_relative_path() const;
     24 // bool has_parent_path() const;
     25 // bool has_filename() const;
     26 // bool has_stem() const;
     27 // bool has_extension() const;
     28 // bool is_absolute() const;
     29 // bool is_relative() const;
     30 
     31 // tested in path.decompose
     32 int main() {}
     33