-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #908 from gbirchmeier/message-n-test
Add 35=n <message> defs to dictionary
- Loading branch information
Showing
12 changed files
with
96 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIX43 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIX44 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a generated file. Don't edit it directly! | ||
|
||
using QuickFix.Fields; | ||
namespace QuickFix | ||
{ | ||
namespace FIXT11 | ||
{ | ||
public class XMLnonFIX : Message | ||
{ | ||
public const string MsgType = "n"; | ||
|
||
public XMLnonFIX() : base() | ||
{ | ||
this.Header.SetField(new QuickFix.Fields.MsgType("n")); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- for DataDictionaryTests.TestCheckMsgType --> | ||
|
||
<fix minor="9" major="9"> | ||
<header/> | ||
<trailer/> | ||
<messages> | ||
<message name="News" msgtype="B" msgcat="admin"> | ||
<!-- body not important for test --> | ||
</message> | ||
</messages> | ||
|
||
<fields> | ||
<field number="35" name="MsgType" type="STRING"> | ||
<value enum="B" description="NEWS" /> | ||
<value enum="bar" description="BAR_MESSAGE" /> | ||
</field> | ||
</fields> | ||
</fix> |