Leaked source code of windows server 2003
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.

53 lines
1.3 KiB

  1. //
  2. // MODULE: SNIFFLOCAL.H
  3. //
  4. // PURPOSE: sniffing class for local TS
  5. //
  6. // COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
  7. //
  8. // AUTHOR: Oleg Kalosha
  9. //
  10. // ORIGINAL DATE: 12-11-98
  11. //
  12. // NOTES: This is concrete implementation of CSniff class for Local TS
  13. //
  14. // Version Date By Comments
  15. //--------------------------------------------------------------------
  16. // V3.2 12-11-98 OK
  17. //
  18. #if !defined(AFX_SNIFFLOCAL_H__AD9F3B66_831C_11D3_8D4B_00C04F949D33__INCLUDED_)
  19. #define AFX_SNIFFLOCAL_H__AD9F3B66_831C_11D3_8D4B_00C04F949D33__INCLUDED_
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif // _MSC_VER > 1000
  23. #include "Sniff.h"
  24. class CTopic;
  25. class CSniffControllerLocal;
  26. class CSniffConnector;
  27. class CSniffLocal : public CSniff
  28. {
  29. CTopic* m_pTopic;
  30. CSniffControllerLocal* m_pSniffControllerLocal;
  31. CSniffConnector* m_pSniffConnector;
  32. public:
  33. CSniffLocal(CSniffConnector*, CTopic*);
  34. ~CSniffLocal();
  35. protected:
  36. virtual CSniffController* GetSniffController();
  37. virtual CSniffConnector* GetSniffConnector();
  38. virtual CTopic* GetTopic();
  39. public:
  40. virtual void SetSniffConnector(CSniffConnector*);
  41. virtual void SetTopic(CTopic*);
  42. };
  43. #endif // !defined(AFX_SNIFFLOCAL_H__AD9F3B66_831C_11D3_8D4B_00C04F949D33__INCLUDED_)