using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TclShell
{
interface IConnectionNameListener
{
///
/// Currently sent when we try to connect. Perhaps it should be sent
/// after we successfully connect. That would be a little trickier.
/// But we might change to that at some time in the future.
///
///
void OnNewConnectionName(string connectionName);
}
}