2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <fstream>
|
|
|
|
|
|
|
|
// template <class charT, class traits = char_traits<charT> >
|
|
|
|
// class basic_ofstream
|
|
|
|
|
2010-08-22 02:26:48 +02:00
|
|
|
// template <class charT, class traits>
|
2010-05-11 21:42:16 +02:00
|
|
|
// void swap(basic_ofstream<charT, traits>& x, basic_ofstream<charT, traits>& y);
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
char temp1[L_tmpnam], temp2[L_tmpnam];
|
|
|
|
tmpnam(temp1);
|
|
|
|
tmpnam(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::ofstream fs1(temp1);
|
|
|
|
std::ofstream fs2(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
fs1 << 3.25;
|
|
|
|
fs2 << 4.5;
|
|
|
|
swap(fs1, fs2);
|
|
|
|
fs1 << ' ' << 3.25;
|
|
|
|
fs2 << ' ' << 4.5;
|
|
|
|
}
|
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::ifstream fs(temp1);
|
2010-05-11 21:42:16 +02:00
|
|
|
double x = 0;
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 3.25);
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 4.5);
|
|
|
|
}
|
2011-07-19 01:51:21 +02:00
|
|
|
remove(temp1);
|
2010-05-11 21:42:16 +02:00
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::ifstream fs(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
double x = 0;
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 4.5);
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 3.25);
|
|
|
|
}
|
2011-07-19 01:51:21 +02:00
|
|
|
remove(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::wofstream fs1(temp1);
|
|
|
|
std::wofstream fs2(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
fs1 << 3.25;
|
|
|
|
fs2 << 4.5;
|
|
|
|
swap(fs1, fs2);
|
|
|
|
fs1 << ' ' << 3.25;
|
|
|
|
fs2 << ' ' << 4.5;
|
|
|
|
}
|
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::wifstream fs(temp1);
|
2010-05-11 21:42:16 +02:00
|
|
|
double x = 0;
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 3.25);
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 4.5);
|
|
|
|
}
|
2011-07-19 01:51:21 +02:00
|
|
|
remove(temp1);
|
2010-05-11 21:42:16 +02:00
|
|
|
{
|
2011-07-19 01:51:21 +02:00
|
|
|
std::wifstream fs(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
double x = 0;
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 4.5);
|
|
|
|
fs >> x;
|
|
|
|
assert(x == 3.25);
|
|
|
|
}
|
2011-07-19 01:51:21 +02:00
|
|
|
remove(temp2);
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|