Tadashi Okoshi
slash****@users*****
2006年 6月 29日 (木) 03:12:49 JST
Index: affelio/lib/Affelio/VSNS/Handshaker_c.pm
diff -u /dev/null affelio/lib/Affelio/VSNS/Handshaker_c.pm:1.1
--- /dev/null Thu Jun 29 03:12:49 2006
+++ affelio/lib/Affelio/VSNS/Handshaker_c.pm Thu Jun 29 03:12:49 2006
@@ -0,0 +1,70 @@
+# Copyright (C) 2005 FishGrove Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# $Id: Handshaker_c.pm,v 1.1 2006/06/28 18:12:49 slash5234 Exp $
+
+package Affelio::VSNS::Handshaker_c;
+{
+ use strict;
+ use lib("../../../extlib/");
+
+ use lib("../../../lib/");
+ use Affelio::misc::CGIError;
+ use Affelio::misc::Debug;
+ use Affelio::SNS::Handshaker_c;
+
+ use Exporter;
+ @Affelio::VSNS::Handshaker_c::ISA= "Exporter";
+ @Affelio::VSNS::Handshaker_c::EXPORT = qw(send_HandShake reply_HandShake get_F2List post_Message get_news delete_AFLink);
+
+ #################################################################
+ sub send_HandShake {
+ debug_print("VSNS::Handshaker_c::send_HandShake: start.");
+ return Affelio::SNS::Handshaker_c::send_HandShake(@_);
+ }
+
+ #################################################################
+ sub reply_HandShake {
+ debug_print("VSNS::Handshaker_c::reply_HandShake: start.");
+ return Affelio::SNS::Handshaker_c::reply_HandShake(@_);
+ }
+
+ ##################################################################
+ sub get_news{
+ debug_print("VSNS::Handshaker_c::get_news: start.");
+ return Affelio::SNS::Handshaker_c::get_news(@_);
+ }
+
+ ##################################################################
+ sub delete_AFLink{
+ debug_print("VSNS::Handshaker_c::delete_AFLink: start.");
+ return Affelio::SNS::Handshaker_c::delete_AFLink(@_);
+ }
+
+ #################################################################
+ sub post_Message{
+ debug_print("VSNS::Handshaker_c::post_Message: start.");
+ return Affelio::SNS::Handshaker_c::post_Message(@_);
+ }
+
+ #################################################################
+ sub get_F2List {
+ debug_print("VSNS::Handshaker_c::get_F2List: start.");
+ return Affelio::SNS::Handshaker_c::get_F2List(@_);
+ }
+
+}
+1;