Remove unused file.

[SVN r23229]
This commit is contained in:
Vladimir Prus
2004-06-28 09:24:30 +00:00
parent 9d1a3565d0
commit 54fa9b45fd

View File

@@ -1,28 +0,0 @@
// Copyright Vladimir Prus 2004.
// 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)
#include <boost/program_options/option.hpp>
#include <boost/program_options/detail/convert.hpp>
#include <boost/program_options/detail/utf8_codecvt_facet.hpp>
#include <boost/bind.hpp>
namespace boost { namespace program_options {
namespace {
}
woption::woption(const option& opt)
{
this->string_key = opt.string_key;
this->position_key = opt.position_key;
std::transform(opt.value.begin(), opt.value.end(),
back_inserter(value),
bind(from_8_bit, _1, ref(facet)));
}
}}