blob: f98b2f717f526c879c475df813e811c266030754 [file] [log] [blame]
// Boost hello_filesystem.cpp --------------------------------------------------------//
// Copyright Beman Dawes 2014
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
// Library home page: http://www.boost.org/libs/filesystem
//--------------------------------------------------------------------------------------//
// //
// In researching filesystem issues it is convenient to have a program that can be //
// quickly modified to test reported problems. That's the purpose of this file and //
// its associated Visual Studio and Boost.Build infrastructure. //
// //
//--------------------------------------------------------------------------------------//
#include <boost/config/warning_disable.hpp>
#include <boost/filesystem.hpp>
#include <iostream>
#include <boost/detail/lightweight_test.hpp>
#include <boost/detail/lightweight_main.hpp>
using std::cout;
using std::endl;
namespace fs = boost::filesystem;
//------------------------------------ cpp_main --------------------------------------//
int cpp_main(int argc, char* argv[])
{
cout << "Hello, filesystem world" << endl;
BOOST_TEST(fs::exists("."));
return ::boost::report_errors();
} // cpp_main