diff options
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); |