/usr/include/quickfix/fix40/News.h is in libquickfix-dev 1.13.3+dfsg-4.
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 34 35 36 37 38 | #ifndef FIX40_NEWS_H
#define FIX40_NEWS_H
#include "Message.h"
namespace FIX40
{
class News : public Message
{
public:
News() : Message(MsgType()) {}
News(const FIX::Message& m) : Message(m) {}
News(const Message& m) : Message(m) {}
News(const News& m) : Message(m) {}
static FIX::MsgType MsgType() { return FIX::MsgType("B"); }
News(
const FIX::LinesOfText& aLinesOfText,
const FIX::Text& aText )
: Message(MsgType())
{
set(aLinesOfText);
set(aText);
}
FIELD_SET(*this, FIX::OrigTime);
FIELD_SET(*this, FIX::Urgency);
FIELD_SET(*this, FIX::RelatdSym);
FIELD_SET(*this, FIX::LinesOfText);
FIELD_SET(*this, FIX::Text);
FIELD_SET(*this, FIX::RawDataLength);
FIELD_SET(*this, FIX::RawData);
};
}
#endif
|