1 #ifndef OBJECTDESCRIPTION_H
2 #define OBJECTDESCRIPTION_H
4 #include "tronostools_global.h"
47 inline unsigned char swapRWflags(
unsigned char f) {
return (f & 0xF9) | ((f & 2) << 1) | ((f & 4) >> 1);}
51 bool parse(
const QByteArray &ba);
68 QString flagString()
const;
72 void read(QByteArray &ba)
const;
76 #endif // OBJECTDESCRIPTION_H
ONB Object description.
Definition: objectdescription.h:44
bool isValid() const
Test Object descriptor for validity.
Definition: objectdescription.h:65
QString name
Name of the object.
Definition: objectdescription.h:55