/usr/include/quickfix/fix41/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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | #ifndef FIX41_NEWS_H
#define FIX41_NEWS_H
#include "Message.h"
namespace FIX41
{
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::Headline& aHeadline )
: Message(MsgType())
{
set(aHeadline);
}
FIELD_SET(*this, FIX::OrigTime);
FIELD_SET(*this, FIX::Urgency);
FIELD_SET(*this, FIX::Headline);
FIELD_SET(*this, FIX::URLLink);
FIELD_SET(*this, FIX::RawDataLength);
FIELD_SET(*this, FIX::RawData);
FIELD_SET(*this, FIX::NoRelatedSym);
class NoRelatedSym: public FIX::Group
{
public:
NoRelatedSym() : FIX::Group(146,46,FIX::message_order(46,65,48,22,167,200,205,201,202,206,207,106,107,0)) {}
FIELD_SET(*this, FIX::RelatdSym);
FIELD_SET(*this, FIX::SymbolSfx);
FIELD_SET(*this, FIX::SecurityID);
FIELD_SET(*this, FIX::IDSource);
FIELD_SET(*this, FIX::SecurityType);
FIELD_SET(*this, FIX::MaturityMonthYear);
FIELD_SET(*this, FIX::MaturityDay);
FIELD_SET(*this, FIX::PutOrCall);
FIELD_SET(*this, FIX::StrikePrice);
FIELD_SET(*this, FIX::OptAttribute);
FIELD_SET(*this, FIX::SecurityExchange);
FIELD_SET(*this, FIX::Issuer);
FIELD_SET(*this, FIX::SecurityDesc);
};
FIELD_SET(*this, FIX::LinesOfText);
class LinesOfText: public FIX::Group
{
public:
LinesOfText() : FIX::Group(33,58,FIX::message_order(58,0)) {}
FIELD_SET(*this, FIX::Text);
};
};
}
#endif
|