renamed CBaseStreamStringifier to CStreamable

This commit is contained in:
Mathew Sutcliffe
2013-08-18 23:47:29 +01:00
parent da8ba9aac3
commit a6f89ce9ea
9 changed files with 36 additions and 35 deletions

View File

@@ -6,7 +6,7 @@
#ifndef BLACKMISC_PQBASE_H
#define BLACKMISC_PQBASE_H
#include "blackmisc/basestreamstringifier.h"
#include "blackmisc/streamable.h"
#include "blackmisc/debug.h"
#include "blackmisc/mathematics.h"
#include <QCoreApplication>
@@ -27,7 +27,7 @@ namespace PhysicalQuantities
* See <a href="http://www.poynton.com/notes/units/index.html">here</a> for an overview.
* Use the static values such as CMeasurementPrefix::k() to specify values.
*/
class CMeasurementPrefix : public CBaseStreamStringifier
class CMeasurementPrefix : public CStreamable
{
private:
QString m_name; //!< name, e.g. "kilo"
@@ -267,7 +267,7 @@ public:
/*!
* \brief Base class for all units, such as meter, hertz.
*/
class CMeasurementUnit : public CBaseStreamStringifier
class CMeasurementUnit : public CStreamable
{
protected:
/*!