Merge branch 'daemon-ext'
[libi2ncommon] / src / tmpfstream.cpp
1 /*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19 */
20 /** @file
21  * @brief fstream which creates files with mkstemp.
22  *
23  * @author Gerd v. Egidy
24  *
25  * @copyright © Copyright 2010 by Intra2net AG
26  */
27
28 #include <string>
29 #include <fstream>
30 #include <sstream>
31 #include <iostream>
32
33 #include "tmpfstream.hpp"
34 #include "tmpfstream_impl.hpp"
35
36 using namespace std;
37
38 namespace I2n
39 {
40
41 template< typename Device, typename Tr, typename Alloc >
42 const std::string tmpfcopystreamTempl<Device, Tr, Alloc>
43     ::default_template_suffix=".tmp.XXXXXX";
44
45 // explicitly instantiate the most used versions.
46 // means they get compiled into the lib and you don't need tmpfstream_impl.hpp
47 // if you want to use anything else, include tmpfstream_impl.hpp.
48 template class tmpfstreamTempl<bio::file_descriptor_sink>;
49 template class tmpfstreamTempl<bio::file_descriptor>;
50
51 template class tmpfcopystreamTempl<bio::file_descriptor_sink>;
52 template class tmpfcopystreamTempl<bio::file_descriptor>;
53
54 }