Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <string>
#include <utility>
#include <boost/format.hpp>
template<typename T>
boost::format& apply_format_args(boost::format& form, T&& t)
{
return form % std::forward<T>(t);
}
/*
* Usage:
* void test(string s, int n) { }
* cout << function_traits<decltype(test)>::arity << endl; //< Prints 2.
* function_traits<decltype(test)>::arg<0>::type s; //< Declares a string.
* function_traits<decltype(test)>::arg<1>::type n; //< Declares an int.
*/
namespace utility {
template<typename FunctionType>
#pragma once
#include <memory>
#include <utility>
#include <cassert>
template <typename T>
class cow_ptr
{
public:
#include <stdexcept>
#include <iostream>
#include <chrono>
using namespace std;
using namespace std::chrono;
typedef long long number;
typedef int count_type;
@SeanCline
SeanCline / http_listener_test.cpp
Last active May 12, 2022 04:52
A simple test of the experimental http_listener provided by the C++ REST SDK (Casablanca).
#define _CRT_SECURE_NO_DEPRECATE
#include <cpprest/http_listener.h>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <thread>
#include <chrono>
#include <ctime>
@SeanCline
SeanCline / filesystem_test.cpp
Created February 28, 2013 03:31
Playing with VS2012's preliminary implementation of <filesystem> before work on tr2 was halted.
#include <iostream>
#include <string>
#include <filesystem>
#include <vector>
#include <algorithm>
#include <exception>
using namespace std;
using namespace std::tr2::sys;