diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-01 17:09:49 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-01 17:09:49 +0000 |
commit | abada90e3f84dc703b8ddc9efcbed8a946fadead (patch) | |
tree | 2c6f9dccd510ea97cb927a7bd635422efaae547a /cpp/demo/book/simple_filesystem/FilesystemI.cpp | |
parent | removing trace message (diff) | |
download | ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2 ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip |
Expanded tabs into spaces
Diffstat (limited to 'cpp/demo/book/simple_filesystem/FilesystemI.cpp')
-rwxr-xr-x | cpp/demo/book/simple_filesystem/FilesystemI.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/demo/book/simple_filesystem/FilesystemI.cpp b/cpp/demo/book/simple_filesystem/FilesystemI.cpp index 8560075d36c..7367e89e3e8 100755 --- a/cpp/demo/book/simple_filesystem/FilesystemI.cpp +++ b/cpp/demo/book/simple_filesystem/FilesystemI.cpp @@ -12,7 +12,7 @@ using namespace std; -Ice::ObjectAdapterPtr Filesystem::NodeI::_adapter; // static member +Ice::ObjectAdapterPtr Filesystem::NodeI::_adapter; // static member // Slice Node::name() operation @@ -39,15 +39,15 @@ Filesystem::NodeI::NodeI(const Ice::CommunicatorPtr & ic, const string & name, c // Ice::Identity myID; if (parent) - myID = ic->stringToIdentity(IceUtil::generateUUID()); + myID = ic->stringToIdentity(IceUtil::generateUUID()); else - myID = ic->stringToIdentity("RootDir"); + myID = ic->stringToIdentity("RootDir"); // Create a proxy for the new node and add it as a child to the parent // NodePrx thisNode = NodePrx::uncheckedCast(_adapter->createProxy(myID)); if (parent) - parent->addChild(thisNode); + parent->addChild(thisNode); // Activate the servant // @@ -66,7 +66,7 @@ Filesystem::FileI::read(const Ice::Current &) const void Filesystem::FileI::write(const Filesystem::Lines & text, - const Ice::Current &) + const Ice::Current &) { _lines = text; } |