Dangerous SNMP
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
context-private.hpp
1 #pragma once
2 
3 #include "dangerous/snmp/context.hpp"
4 
5 #include "iosystem.hpp"
6 
7 namespace dangerous { namespace snmp {
8 
10 protected:
11  PrivateData();
12 
13 public:
14  ~PrivateData();
15 
16  IoSystem io;
17 
18  friend class Context;
19 };
20 
21 } }
22 
Definition: iosystem.hpp:15
A Dangerous SNMP "Context" is the backing for the rest of the Dangerous SNMP libraries.
Definition: context.hpp:18
Definition: context-private.hpp:9