/usr/include/wvstreams/wvtr1.h is in libwvstreams-dev 4.6.1-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | /* -*- Mode: C++ -*-
* Worldvisions Weaver Software:
* Copyright (C) 1997-2002 Net Integration Technologies, Inc.
*
* Provide some aliases for TR1 stuff, with a fallback on Boost.
*/
#ifndef __WVTR1_H
#define __WVTR1_H
#include "wvautoconf.h"
#if defined(HAVE_TR1_FUNCTIONAL)
#include <tr1/functional>
#include <tr1/memory>
namespace wv
{
using std::tr1::bind;
using std::tr1::cref;
using std::tr1::function;
using std::tr1::ref;
using std::tr1::shared_ptr;
}
namespace {
using namespace std::tr1::placeholders;
}
#elif defined(HAVE_BOOST_FUNCTION_HPP)
#include <boost/bind.hpp>
#include <boost/function.hpp>
#include <boost/shared_ptr.hpp>
namespace wv
{
using boost::bind;
using boost::cref;
using boost::function;
using boost::ref;
using boost::shared_ptr;
}
#else /* We have neither TR1 or Boost, punt. */
#error "One of TR1 or Boost is required to use WvStreams"
#endif
#endif /* __WVTR1_H */
|