Imported Upstream version 14.45.0
[platform/upstream/libzypp.git] / zypp / base / GzStream.h
index 6512008..eaadd83 100644 (file)
@@ -186,7 +186,7 @@ namespace zypp
 
     ///////////////////////////////////////////////////////////////////
     //
-    // CLASS NAME : fXstream<class TBStr,class TSBuf>
+    // CLASS NAME : fXstream<class _BStr,class _SBuf>
     /**
      * @short Common template to define ifgzstream/ofgzstream
      * reading/writing gzip files.
@@ -195,14 +195,14 @@ namespace zypp
      * @ref ofgzstream. fXstream is just to avoid almost
      * duplicate code.
      **/
-    template<class TBStream,class TStreamBuf>
-      class fXstream : public TBStream
+    template<class _BStream,class _StreamBuf>
+      class fXstream : public _BStream
       {
       public:
 
         typedef gzstream_detail::ZlibError ZlibError;
-        typedef TBStream                   stream_type;
-        typedef TStreamBuf                 streambuf_type;
+        typedef _BStream                   stream_type;
+        typedef _StreamBuf                 streambuf_type;
 
         fXstream()
         : stream_type( NULL )