diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-28 00:25:20 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-28 00:25:20 +0000 |
commit | 8eff4c0e229ea3d6ba28ff93de10d25bb7770658 (patch) | |
tree | 4d826210222cbff4b9e6c011741bfc5b490e42c6 /cpp/src/Slice/OutputUtil.h | |
parent | removed spacing (diff) | |
download | ice-8eff4c0e229ea3d6ba28ff93de10d25bb7770658.tar.bz2 ice-8eff4c0e229ea3d6ba28ff93de10d25bb7770658.tar.xz ice-8eff4c0e229ea3d6ba28ff93de10d25bb7770658.zip |
added SSL framework
Diffstat (limited to 'cpp/src/Slice/OutputUtil.h')
-rw-r--r-- | cpp/src/Slice/OutputUtil.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/src/Slice/OutputUtil.h b/cpp/src/Slice/OutputUtil.h index 1d0c477fc4d..866b50e3681 100644 --- a/cpp/src/Slice/OutputUtil.h +++ b/cpp/src/Slice/OutputUtil.h @@ -37,11 +37,11 @@ class ICE_API Output : ::IceInternal::noncopyable public: Output(); - Output(const char*);
-
- void setBeginBlock(const char *); // what do we use at block starts?
- void setEndBlock(const char *); // what do we use the block end?
- void setIndent(int); // what is the indent level?
+ Output(const char*); + + void setBeginBlock(const char *); // what do we use at block starts? + void setEndBlock(const char *); // what do we use the block end? + void setIndent(int); // what is the indent level? void setUseTab(bool); // should we output tabs? void open(const char*); // Open output stream @@ -68,11 +68,11 @@ private: int _pos; int _indent; std::stack<int> _indentSave; - bool _separator;
-
- std::string _blockStart;
- std::string _blockEnd;
- bool _useTab;
+ bool _separator; + + std::string _blockStart; + std::string _blockEnd; + bool _useTab; int _indentSize; }; |