Advertisement
Guest User

Untitled

a guest
May 25th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. #ifndef TIN_NETWORK_SNIFFER_EVENTS_ISSNIFFING_HPP
  2. #define TIN_NETWORK_SNIFFER_EVENTS_ISSNIFFING_HPP
  3.  
  4. #include "../Event.hpp"
  5.  
  6.  
  7. namespace tin { namespace network { namespace sniffer { namespace events
  8. {
  9.     struct IsSniffing: public tin::network::sniffer::Event
  10.     {
  11.         bool is;
  12.  
  13.         IsSniffing(bool& is);
  14.  
  15.         virtual void accept(tin::network::sniffer::ManagerVisitor& visitor);
  16.     };
  17. }}}}
  18.  
  19. #endif  /* TIN_NETWORK_SNIFFER_EVENTS_ISSNIFFING_HPP */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement