LNContext.h 337 B

1234567891011121314151617
  1. #pragma once
  2. #include "ClientContext.h"
  3. class CLNContext :
  4. public CClientContext
  5. {
  6. public:
  7. CLNContext();
  8. ~CLNContext();
  9. public:
  10. void addresses(const ACE_INET_Addr& remote_address, const ACE_INET_Addr& local_address) override;
  11. void handle_time_out(const ACE_Time_Value& tv, const void* act = 0) override;
  12. };