/usr/include/PackageKit/packagekit-qt2/bitfield.h is in libpackagekit-qt2-dev 0.8.8-2ubuntu1.
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 PACKAGEKIT_BITFIELD_H
#define PACKAGEKIT_BITFIELD_H
#include <QtGlobal>
namespace PackageKit {
class Bitfield
{
public:
Bitfield ();
Bitfield (qulonglong val);
~Bitfield ();
qulonglong operator& (qulonglong mask) const;
qulonglong operator&= (qulonglong mask);
qulonglong operator| (qulonglong mask) const;
qulonglong operator|= (qulonglong mask);
Bitfield operator& (Bitfield mask) const;
Bitfield operator&= (Bitfield mask);
Bitfield operator| (Bitfield mask) const;
Bitfield operator|= (Bitfield mask);
Bitfield& operator= (const Bitfield& other);
private:
qulonglong m_val;
};
} // End namespace PackageKit
#endif
|