Skip to content

Commit

Permalink
some interface housekeeping; removal of stale old demo apps
Browse files Browse the repository at this point in the history
  • Loading branch information
gbirchmeier committed May 7, 2013
1 parent 544881c commit 465aa57
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 55 deletions.
9 changes: 3 additions & 6 deletions QuickFIXn/AbstractInitiator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public void Start()
{
isStopped_ = false;
OnConfigure(settings_);
OnInitialize(settings_);
thread_ = new Thread(new ThreadStart(OnStart));
thread_.Start();
}
Expand Down Expand Up @@ -129,15 +128,13 @@ public bool IsLoggedOn()
#region Virtual Methods

/// <summary>
/// Implemented to configure acceptor
/// Override this to configure additional implemenation-specific settings
/// </summary>
/// <param name="settings"></param>
protected virtual void OnConfigure(SessionSettings settings)
{ }
/// <summary>
/// Implemented to initialize initiator
/// </summary>
/// <param name="settings"></param>

[System.Obsolete("This method's intended purpose is unclear. Don't use it.")]
protected virtual void OnInitialize(SessionSettings settings)
{ }

Expand Down
24 changes: 0 additions & 24 deletions QuickFIXn/Applications/FIX4Application.cs

This file was deleted.

22 changes: 0 additions & 22 deletions QuickFIXn/Applications/FIX5Application.cs

This file was deleted.

2 changes: 0 additions & 2 deletions QuickFIXn/QuickFix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@
<Compile Include="DataDictionary\IFieldMapSpec.cs" />
<Compile Include="DataDictionary\IGroupSpec.cs" />
<Compile Include="IAcceptor.cs" />
<Compile Include="Applications\FIX4Application.cs" />
<Compile Include="Applications\FIX5Application.cs" />
<Compile Include="ClientHandlerThread.cs" />
<Compile Include="DataDictionaryProvider.cs" />
<Compile Include="DataDictionary\DataDictionary.cs" />
Expand Down
2 changes: 1 addition & 1 deletion QuickFIXn/Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace QuickFix
/// of 1 and ending when the session is reset. The Session could span many sequential
/// connections (it cannot operate on multiple connections simultaneously).
/// </summary>
public partial class Session
public class Session
{
#region Private Members

Expand Down

0 comments on commit 465aa57

Please sign in to comment.