diff options
author | fcolin | 2007-02-01 09:49:38 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:49:38 +0000 |
commit | 8a3a9e017172d1bf0e61854a7582d21bc4c381d0 (patch) | |
tree | 1cedc1e9084a6f02a0f0ed16eee756783b6a1ebb | |
parent | de29a2d325468cbc422781908a49e737d8a0b1b0 (diff) | |
download | ivy-csharp-8a3a9e017172d1bf0e61854a7582d21bc4c381d0.zip ivy-csharp-8a3a9e017172d1bf0e61854a7582d21bc4c381d0.tar.gz ivy-csharp-8a3a9e017172d1bf0e61854a7582d21bc4c381d0.tar.bz2 ivy-csharp-8a3a9e017172d1bf0e61854a7582d21bc4c381d0.tar.xz |
Utilisateur : Fcolin Date : 23/12/05 Heure : 16:22 Archivé dans $/CSharp/Ivy Commentaire: (vss 3)
-rw-r--r-- | CSharp/Ivy/Ivy/IvyProtocol.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CSharp/Ivy/Ivy/IvyProtocol.cs b/CSharp/Ivy/Ivy/IvyProtocol.cs index 9cf91de..3d91812 100644 --- a/CSharp/Ivy/Ivy/IvyProtocol.cs +++ b/CSharp/Ivy/Ivy/IvyProtocol.cs @@ -3,13 +3,12 @@ using System.Text; namespace IvyBus
{
- interface IvyProtocolInterface
+ internal abstract class IvyProtocolInterface
{
void TokenStartRegexp(ushort port, string appName);
void TokenEndRegexp();
void TokenApplicationId(ushort priority, string appId);
- void TokenAddBinding(ushort id, string regexp);
- void TokenAddRegexp(ushort id, string regexp);
+ void TokenAddBinding(IvyBindingBase bind);
void TokenDelBinding(ushort bind);
void TokenDirectMsg(ushort id, string message);
void TokenPong(string s);
|