Ticket #4764: Main.cpp

File Main.cpp, 217 bytes (added by keith.jeffery@…, 12 years ago)
Line 
1#include <string>
2#include <iostream>
3
4#include <boost/filesystem.hpp>
5
6int main()
7{
8 std::string dir("C:\\Windows\\System32");
9 boost::filesystem::path p(dir);
10
11 std::cout << p.string() << '\n';
12}