Renamed libsettable to libattributes.

This commit is contained in:
Jens Luedicke
2011-01-22 20:08:41 +01:00
parent e403394516
commit fb4eca99db
3 changed files with 35 additions and 19 deletions

26
string2type.hpp Normal file
View File

@@ -0,0 +1,26 @@
//! \file string2type.hpp
//! \brief C++ Library (header-only).
// settable.hpp ------------------------------------------------------------//
//
// Copyright Jens Luedicke 2010
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//----------------------------------------------------------------------------//
#ifndef STRING2TYPE_HPP
#define STRING2TYPE_HPP
#include <string>
namespace string2type {
template<typename T>
T convert(const std::string &value);
}
#endif /* STRING2TYPE_HPP */