diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-08-31 21:46:22 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-08-31 21:46:22 +0000 |
commit | eca145de98b3ca5271cacb0f85ce210f1759c189 (patch) | |
tree | 1afe466401480fed36d4407b3d96f385fe90f7b4 /cpp/demo/Freeze/library/LibraryI.cpp | |
parent | removing global definitions (diff) | |
download | ice-eca145de98b3ca5271cacb0f85ce210f1759c189.tar.bz2 ice-eca145de98b3ca5271cacb0f85ce210f1759c189.tar.xz ice-eca145de98b3ca5271cacb0f85ce210f1759c189.zip |
scope fixes
Diffstat (limited to 'cpp/demo/Freeze/library/LibraryI.cpp')
-rw-r--r-- | cpp/demo/Freeze/library/LibraryI.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/demo/Freeze/library/LibraryI.cpp b/cpp/demo/Freeze/library/LibraryI.cpp index 75f36548c20..e5b3c4c68df 100644 --- a/cpp/demo/Freeze/library/LibraryI.cpp +++ b/cpp/demo/Freeze/library/LibraryI.cpp @@ -52,7 +52,7 @@ BookI::destroy(const Ice::Current&) } } -::BookDescription +Demo::BookDescription BookI::getBookDescription(const Ice::Current&) const { IceUtil::RWRecMutex::RLock sync(*this); @@ -166,8 +166,8 @@ LibraryI::~LibraryI() { } -::BookPrx -LibraryI::createBook(const ::BookDescription& description, const Ice::Current& c) +Demo::BookPrx +LibraryI::createBook(const Demo::BookDescription& description, const Ice::Current& c) { IceUtil::RWRecMutex::WLock sync(*this); @@ -228,7 +228,7 @@ LibraryI::createBook(const ::BookDescription& description, const Ice::Current& c return book; } -::BookPrx +Demo::BookPrx LibraryI::findByIsbn(const string& isbn, const Ice::Current& c) const { // @@ -252,7 +252,7 @@ LibraryI::findByIsbn(const string& isbn, const Ice::Current& c) const } } -::BookPrxSeq +Demo::BookPrxSeq LibraryI::findByAuthors(const string& authors, const Ice::Current& c) const { IceUtil::RWRecMutex::RLock sync(*this); |