Skip to content

Commit ba88d85

Browse files
committedDec 23, 2014
64位CTP支持
1 parent bff91fe commit ba88d85

File tree

62 files changed

+2121
-189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2121
-189
lines changed
 

‎QuantBox.XAPI/Callback/XApi.MarketData.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using QuantBox.XAPI.Interface;
2+
using System;
23
using System.Collections.Generic;
34
using System.Linq;
45
using System.Runtime.InteropServices;
@@ -7,7 +8,7 @@
78

89
namespace QuantBox.XAPI.Callback
910
{
10-
public partial class XApi
11+
public partial class XApi : IXMarketData
1112
{
1213
public DelegateOnRtnDepthMarketData OnRtnDepthMarketData;
1314

‎QuantBox.XAPI/Callback/XApi.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
using QuantBox.XAPI.Interface;
2+
using System;
23
using System.Collections.Generic;
34
using System.Linq;
45
using System.Runtime.InteropServices;
@@ -7,7 +8,7 @@
78

89
namespace QuantBox.XAPI.Callback
910
{
10-
public partial class XApi : BaseApi,IDisposable
11+
public partial class XApi : BaseApi, IDisposable, IXApi
1112
{
1213
internal XApi(string path1, Queue queue)
1314
: base(path1, queue)

0 commit comments

Comments
 (0)
Please sign in to comment.