diff options
author | Marc Laukien <marc@zeroc.com> | 2002-01-14 18:43:01 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-01-14 18:43:01 +0000 |
commit | f453785066eff4e8d9f5c7fd63bd01b4260020ed (patch) | |
tree | 1410e9fc19a52042879f9f06fe9e6c1ecb443e2a /cpp/src/IceWall/Router.cpp | |
parent | file ServerBlobject.cpp was initially added on branch glacier. (diff) | |
download | ice-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.cpp | 47 |
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; -} |