/usr/include/libecap/common/memory.h is in libecap2-dev 0.2.0-1ubuntu4.
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 | /* (C) 2008 The Measurement Factory */
#ifndef LIBECAP__COMMON_MEMORY_H
#define LIBECAP__COMMON_MEMORY_H
#include <libecap/common/libecap.h>
#include <tr1/memory>
// TODO: add support for boost pointers if std::tr1 is not available
namespace libecap {
using std::tr1::weak_ptr;
using std::tr1::shared_ptr;
} // namespace libecap
#endif
|