-
Notifications
You must be signed in to change notification settings - Fork 1
/
odstream.cpp
27 lines (22 loc) · 1.29 KB
/
odstream.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***********************************************************************/
/* */
/* odstream.cpp: Source file for stream class using OutputDebugString */
/* */
/* Copyright (C) 2011,2017 Yak! / Yasutaka ATARASHI */
/* */
/* This software is distributed under the terms of a zlib/libpng */
/* License. */
/* */
/* $Id: 6513ed3a9f23aca93b18470eacbced77a34566dd $ */
/* */
/***********************************************************************/
#include <iostream>
#include <sstream>
#include <windows.h>
#include "odstream.hpp"
template struct yak::debug_yes::detail::traits<char>;
template struct yak::debug_yes::detail::traits<wchar_t>;
template struct yak::debug_yes::debug_yes_impl<char>;
template struct yak::debug_yes::debug_yes_impl<wchar_t>;
template struct yak::debug_no::pseudo_null_stream<char>;
template struct yak::debug_no::pseudo_null_stream<wchar_t>;