/usr/include/opengm/datastructures/buffer_randomaccessset.hxx is in libopengm-dev 2.3.6-2.
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 | #pragma once
#ifndef OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
#define OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
#include <vector>
#include <algorithm>
#include <utility>
#include <opengm/datastructures/buffer_vector.hxx>
namespace opengm {
template<class T>
class BufferRandomAccessSet{
public:
void insert(const T & );
private:
BufferVector<T> vector_;
};
} // namespace opengm
#endif // #ifndef OPENGM_BUFFER_RANDOM_ACCESS_SET_HXX
|