Skip to content

Commit

Permalink
move store classes to new Store namespace
Browse files Browse the repository at this point in the history
also make them use file-scoped namespace
and get rid of the extra indent
  • Loading branch information
gbirchmeier committed Feb 9, 2024
1 parent 30bcec9 commit 9909d22
Show file tree
Hide file tree
Showing 24 changed files with 406 additions and 396 deletions.
1 change: 1 addition & 0 deletions AcceptanceTest/TestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.IO;
using System.Net;
using QuickFix.Logger;
using QuickFix.Store;

namespace AcceptanceTest;

Expand Down
1 change: 1 addition & 0 deletions Examples/Executor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Text;
using QuickFix;
using QuickFix.Logger;
using QuickFix.Store;

namespace Executor
{
Expand Down
1 change: 1 addition & 0 deletions Examples/SimpleAcceptor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Text;
using QuickFix;
using QuickFix.Logger;
using QuickFix.Store;
using QuickFix.Transport;

namespace SimpleAcceptor
Expand Down
3 changes: 2 additions & 1 deletion Examples/TradeClient/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using System.Text;
using QuickFix.Logger;
using QuickFix.Store;

namespace TradeClient
{
Expand Down Expand Up @@ -32,7 +33,7 @@ static void Main(string[] args)
{
QuickFix.SessionSettings settings = new QuickFix.SessionSettings(file);
TradeClientApp application = new TradeClientApp();
QuickFix.IMessageStoreFactory storeFactory = new QuickFix.FileStoreFactory(settings);
IMessageStoreFactory storeFactory = new FileStoreFactory(settings);
ILogFactory logFactory = new ScreenLogFactory(settings);
QuickFix.Transport.SocketInitiator initiator = new QuickFix.Transport.SocketInitiator(application, storeFactory, settings, logFactory);

Expand Down
1 change: 1 addition & 0 deletions QuickFIXn/AbstractInitiator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Collections.Generic;
using System;
using QuickFix.Logger;
using QuickFix.Store;

namespace QuickFix
{
Expand Down
1 change: 1 addition & 0 deletions QuickFIXn/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using QuickFix.Fields;
using QuickFix.Fields.Converters;
using QuickFix.Logger;
using QuickFix.Store;

namespace QuickFix
{
Expand Down
1 change: 1 addition & 0 deletions QuickFIXn/SessionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using QuickFix.Logger;
using QuickFix.Store;
using QuickFix.Util;

namespace QuickFix
Expand Down
1 change: 1 addition & 0 deletions QuickFIXn/SessionState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using QuickFix.Logger;
using QuickFix.Store;
using MessagesBySeqNum = System.Collections.Generic.Dictionary<ulong, QuickFix.Message>;

namespace QuickFix
Expand Down
Loading

0 comments on commit 9909d22

Please sign in to comment.