/usr/include/bobcat/level is in libbobcat-dev 3.19.01-1ubuntu1.
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 | #ifndef INCLUDED_BOBCAT_LEVEL_
#define INCLUDED_BOBCAT_LEVEL_
#include <bobcat/log>
namespace FBB
{
    class level;
}
namespace FBB
{
class level
{
    friend std::ostream &operator<<(std::ostream &, level const &);
    size_t d_level;
    public:
        explicit level(size_t lvel);
    private:
        std::ostream &insertInto(std::ostream &str, Log &lp) const;
};
inline level::level(size_t lvel)
:
    d_level(lvel)
{}
} // FBB
        
#endif
 |