summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pstream.h
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2016-05-25 20:28:58 +0200
committer couriersud <couriersud@arcor.de>2016-05-27 01:19:59 +0200
commitfd62273a87b8fe43492e4a466ea97993b88904f8 (patch)
tree896b1aca134a5396e0dedb31aac26875b3466c60 /src/lib/netlist/plib/pstream.h
parent111c5a3dc080a4d454dbcadb6c211ccf2c749da7 (diff)
Moved more code into plib namespace. (nw)
Diffstat (limited to 'src/lib/netlist/plib/pstream.h')
-rw-r--r--src/lib/netlist/plib/pstream.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/pstream.h b/src/lib/netlist/plib/pstream.h
index fd749a09cce..a3e16299c76 100644
--- a/src/lib/netlist/plib/pstream.h
+++ b/src/lib/netlist/plib/pstream.h
@@ -16,6 +16,8 @@
#include "palloc.h"
#include "pfmtlog.h"
+PLIB_NAMESPACE_START()
+
// -----------------------------------------------------------------------------
// pstream: things common to all streams
// -----------------------------------------------------------------------------
@@ -357,7 +359,7 @@ private:
// pstream_fmt_writer_t: writer on top of ostream
// -----------------------------------------------------------------------------
-class pstream_fmt_writer_t : public pfmt_writer_t<>
+class pstream_fmt_writer_t : public plib::pfmt_writer_t<>
{
P_PREVENT_COPYING(pstream_fmt_writer_t)
public:
@@ -375,4 +377,6 @@ private:
postream &m_strm;
};
+PLIB_NAMESPACE_END()
+
#endif /* _PSTREAM_H_ */