Click here to Skip to main content
15,896,467 members
Articles / Programming Languages / C++

Napkin

Rate me:
Please Sign up or sign in to vote.
4.38/5 (4 votes)
12 Mar 20063 min read 39.1K   66   11  
A simple logging library using generic object to streams
#pragma once


#include <windows.h>
#include <boost/config.hpp> // for BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
#include "./alt_msg_mapn_entry_set.hpp"


#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)

	#include <boost/mpl/void.hpp>

	#if !defined(PSTADE_KETCHUP_CFG_NO_PREPROCESSED_HEADERS)
		#include "../detail/preprocessed/alt_msg_map_entry_set.hpp"
	#else
		#include "../detail/preprocessing/alt_msg_map_entry_set.hpp"
	#endif

#else

	namespace pstade { namespace ketchup {

		struct alt_msg_map_entry_set : alt_msg_mapn_entry_set
		{ };

	} } // namespace pstade::ketchup

#endif // !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Japan Japan
I am worried about my poor English...

Comments and Discussions