This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/fusion360/usr/Include/Core/Common/pLogger.h
2022-10-15 19:16:08 +02:00

21 lines
333 B
C++

#ifndef __PLOGGER_H__
#define __PLOGGER_H__
#include "pTypes.h"
class pLogger
{
public:
pLogger();
~pLogger();
pErrorStream * getErrorStream() const { return mErrorStream; }
void setErrorStream(pErrorStream * val) { mErrorStream = val; }
protected:
pErrorStream *mErrorStream;
};
#endif