diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-26 19:44:07 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-26 19:44:07 +0000 |
commit | 80d16826358ff9f0ec8911713873842480f642c3 (patch) | |
tree | 9b96543df3da9ad9b37c556daa392550458fd7f7 /cpp/src/Slice/OutputUtil.h | |
parent | sorry, missed one (diff) | |
download | ice-80d16826358ff9f0ec8911713873842480f642c3.tar.bz2 ice-80d16826358ff9f0ec8911713873842480f642c3.tar.xz ice-80d16826358ff9f0ec8911713873842480f642c3.zip |
started code style conversion
Diffstat (limited to 'cpp/src/Slice/OutputUtil.h')
-rw-r--r-- | cpp/src/Slice/OutputUtil.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Slice/OutputUtil.h b/cpp/src/Slice/OutputUtil.h index f4f634d5981..1d0c477fc4d 100644 --- a/cpp/src/Slice/OutputUtil.h +++ b/cpp/src/Slice/OutputUtil.h @@ -32,7 +32,7 @@ extern ICE_API Separator sp; // Indent // ---------------------------------------------------------------------- -class ICE_API Output : ::__Ice::noncopyable +class ICE_API Output : ::IceInternal::noncopyable { public: @@ -64,11 +64,11 @@ public: private: - std::ofstream out_; - int pos_; - int indent_; - std::stack<int> indentSave_; - bool separator_;
+ std::ofstream _out; + int _pos; + int _indent; + std::stack<int> _indentSave; + bool _separator;
std::string _blockStart;
std::string _blockEnd;
|