Source code of Windows XP (NT5)
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

  1. // LocalDirMonitor.h: interface for the CLocalDirectoryMonitor class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_)
  5. #define AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "DirMonitor.h"
  10. class CLocalDirectoryMonitor : public CDirectoryMonitor
  11. {
  12. CString m_strTopicName;
  13. public:
  14. CLocalDirectoryMonitor();
  15. public:
  16. void SetTopicName(const CString& strTopicName) {m_strTopicName = strTopicName;}
  17. };
  18. #endif // !defined(AFX_LOCALDIRMONITOR_H__9E418C74_B256_11D2_8C8D_00C04F949D33__INCLUDED_)