diff options
author | fcolin | 2007-02-01 10:01:26 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:01:26 +0000 |
commit | 679d18fc7c0c7ef8afbb6bec2fb4f4b26fd8509d (patch) | |
tree | ae27703873a5ea030efdbdbe28837f860977b26f /CSharp/Ivy/IvyPPC/IvyProtocol.cs | |
parent | b3b8c50e1d14c19e87c210ca7729e051e3630e10 (diff) | |
download | ivy-csharp-679d18fc7c0c7ef8afbb6bec2fb4f4b26fd8509d.zip ivy-csharp-679d18fc7c0c7ef8afbb6bec2fb4f4b26fd8509d.tar.gz ivy-csharp-679d18fc7c0c7ef8afbb6bec2fb4f4b26fd8509d.tar.bz2 ivy-csharp-679d18fc7c0c7ef8afbb6bec2fb4f4b26fd8509d.tar.xz |
Utilisateur : Fcolin Date : 23/12/05 Heure : 16:22 Archivé dans $/CSharp/Ivy Commentaire: (vss 3)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyProtocol.cs')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyProtocol.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyProtocol.cs b/CSharp/Ivy/IvyPPC/IvyProtocol.cs index 9cf91de..3d91812 100644 --- a/CSharp/Ivy/IvyPPC/IvyProtocol.cs +++ b/CSharp/Ivy/IvyPPC/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);
|