forked from connamara/quickfixn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroup.cs
40 lines (35 loc) · 796 Bytes
/
Group.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QuickFix
{
public class Group : FieldMap
{
public Group(int field, int delim)
{
Field = field;
Delim = delim;
}
public Group(int field, int delim, int[] fieldOrd)
:base(fieldOrd)
{
Field = field;
Delim = delim;
}
public int Field
{
get { return _field; }
private set { _field = value; }
}
public int Delim
{
get { return _delim; }
private set { _delim = value; }
}
#region Private Members
private int _field;
private int _delim;
#endregion
}
}