OSDN Git Service

TBottleChainNoDispatchAction added
authornaru <bottle@mikage.to>
Fri, 3 Jan 2003 19:40:37 +0000 (19:40 +0000)
committernaru <bottle@mikage.to>
Fri, 3 Jan 2003 19:40:37 +0000 (19:40 +0000)
bottleclient/BottleChainRule.pas

index da94e02..662dfd2 100755 (executable)
@@ -237,10 +237,16 @@ type
     property LogNames: TStrings read FLogNames write SetLogNames;
   end;
 
+  TBottleChainNoDispatchAction = class(TBottleChainAction)
+  public
+    class function Title: String; override;
+  end;
+
 const
-  BottleChainActions: array [0..3] of TBottleChainActionClass = (
+  BottleChainActions: array [0..4] of TBottleChainActionClass = (
     TBottleChainLogAction,
     TBottleChainSoundAction,
+    TBottleChainNoDispatchAction,
     TBottleChainAbortRuleAction,
     TBottleChainQuitAction
   );
@@ -951,6 +957,13 @@ begin
   Result := '\83\81\83b\83Z\81[\83W\82Ì\83^\83C\83v\82ª(\8ew\92è)\82Ì\82Æ\82«';
 end;
 
+{ TBottleChainNoDispatchAction }
+
+class function TBottleChainNoDispatchAction.Title: String;
+begin
+  Result := '\82±\82Ì\83\81\83b\83Z\81[\83W\82ðSSTP\83T\81[\83o\82É\93]\91\97\82µ\82È\82¢';
+end;
+
 initialization
 
 RegisterClasses([TBottleChainRule, TBottleChainRuleList]);