CbmRoot
Loading...
Searching...
No Matches
CbmMqTMessage.h
Go to the documentation of this file.
1/* Copyright (C) 2021 Facility for Antiproton and Ion Research in Europe, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Pierre-Alain Loizeau [committer] */
4
5#ifndef CBMMQTMESSAGE_H_
6#define CBMMQTMESSAGE_H_
7
8#include "TMessage.h"
9
10// special class to expose protected TMessage constructor
11class CbmMqTMessage : public TMessage {
12public:
13 CbmMqTMessage(void* buf, Int_t len) : TMessage(buf, len) { ResetBit(kIsOwner); }
14};
15
16#endif /* CBMMQTMESSAGE_H_ */
CbmMqTMessage(void *buf, Int_t len)