summaryrefslogtreecommitdiff
path: root/cpp/src/IceWall/Router.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-01-14 18:43:01 +0000
committerMarc Laukien <marc@zeroc.com>2002-01-14 18:43:01 +0000
commitf453785066eff4e8d9f5c7fd63bd01b4260020ed (patch)
tree1410e9fc19a52042879f9f06fe9e6c1ecb443e2a /cpp/src/IceWall/Router.cpp
parentfile ServerBlobject.cpp was initially added on branch glacier. (diff)
downloadice-f453785066eff4e8d9f5c7fd63bd01b4260020ed.tar.bz2
ice-f453785066eff4e8d9f5c7fd63bd01b4260020ed.tar.xz
ice-f453785066eff4e8d9f5c7fd63bd01b4260020ed.zip
glacier intergration
Diffstat (limited to 'cpp/src/IceWall/Router.cpp')
-rw-r--r--cpp/src/IceWall/Router.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/cpp/src/IceWall/Router.cpp b/cpp/src/IceWall/Router.cpp
deleted file mode 100644
index 769aee8d118..00000000000
--- a/cpp/src/IceWall/Router.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#include <IceWall/Router.h>
-
-using namespace std;
-using namespace Ice;
-using namespace IceWall;
-
-void
-IceWall::Blobject::ice_invoke(const std::vector<Byte>& inParams, std::vector<Byte>& outParams, const Current& current)
-{
- cout << current.identity << endl;
- cout << current.facet << endl;
- cout << current.operation << endl;
- throw UnknownLocalException(__FILE__, __LINE__);
-}
-
-IceWall::Router::Router() :
- _blobject(new IceWall::Blobject)
-{
-}
-
-ObjectPtr
-IceWall::Router::locate(const ObjectAdapterPtr&, const Current&, LocalObjectPtr&)
-{
- return _blobject;
-}
-
-void
-IceWall::Router::finished(const ObjectAdapterPtr&, const Current&, const ObjectPtr&, const LocalObjectPtr&)
-{
- // Nothing to do
-}
-
-void
-IceWall::Router::deactivate()
-{
- _blobject = 0;
-}