You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
514 B
C++

// MaintMsg.h: interface for the CMaintMsg class.
//
//////////////////////////////////////////////////////////////////////
#pragma once
#include <string>
#include "DllDefines.h"
class MCCTRDLLCLASS CMaintMsg
{
public:
static std::string GetMaintMsg();
static void ClearMaintMsg();
static bool IsMsgAvailable();
static void SetMaintMsg(const std::string& strMsg);
CMaintMsg();
virtual ~CMaintMsg();
static CMutex m_MaintMsgMutex;
private:
static std::string m_strMaintMsg;
};