mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
701 B
25 lines
701 B
// LocalDirMonitor.h: interface for the CLocalDirectoryMonitor class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_)
|
|
#define AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "DirMonitor.h"
|
|
|
|
class CLocalDirectoryMonitor : public CDirectoryMonitor
|
|
{
|
|
CString m_strTopicName;
|
|
|
|
public:
|
|
CLocalDirectoryMonitor();
|
|
|
|
public:
|
|
void SetTopicName(const CString& strTopicName) {m_strTopicName = strTopicName;}
|
|
};
|
|
|
|
#endif // !defined(AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_)
|