forked from quickfix/quickfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_defined_2.html
More file actions
34 lines (28 loc) · 801 Bytes
/
Copy pathuser_defined_2.html
File metadata and controls
34 lines (28 loc) · 801 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<link href="../doxygen.css" rel="stylesheet" type="text/css">
</header>
<div class='fragment'>
<pre>
from quickfix import *
class MyStringField(quickfix.StringField):
def __init__(self, data = None)
if data == None:
quickfix.StringField.__init__(self, 6123)
else:
quickfix.StringField.__init__(self, 6123, data)
class MyPriceField(quickfix.DoubleField):
def __init__(self, data = None)
if data == None:
quickfix.DoubleField.__init__(self, 8756)
else:
quickfix.DoubleField.__init__(self, 8756, data)
</pre>
</div>
</body>
</html>