/usr/include/oce/MFT_CommandDescriptor.hxx is in liboce-visualization-dev 0.9.1-3.
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 | #ifndef _MFT_CommandDescriptor_HeaderFile
#define _MFT_CommandDescriptor_HeaderFile
typedef unsigned int MFT_CommandDescriptor;
#define COMMAND_VALUETYPE(d,n) ((d >> (32 - 2*n)) & 0x3)
#define SET_COMMAND_VALUETYPE(d,n,t) (d |= t << (32 - 2*n))
#define COMMAND_LENGTH(d) ((d >> 8) & 0xFF)
#define SET_COMMAND_LENGTH(d,l) (d = (d & 0xFFFF00FF) | (l << 8))
#define COMMAND_TYPE(d) MFT_TypeOfCommand(d & 0xFF)
#define SET_COMMAND_TYPE(d,t) (d = (d & 0xFFFFFF00) | t)
#ifndef _Standard_Type_HeaderFile
#include <Standard_Type.hxx>
#endif
const Handle(Standard_Type)& STANDARD_TYPE(MFT_CommandDescriptor);
#endif
|