libkovan  1
The kovan standard library
port.hpp
Go to the documentation of this file.
1 #ifndef _PORT_HPP_
2 #define _PORT_HPP_
3 
4 #include "export.h"
5 
6 #include <stdexcept>
7 
8 class EXPORT_SYM InvalidPort : std::logic_error
9 {
10 public:
11  InvalidPort(const std::string& what);
12 };
13 
14 typedef int port_t;
15 
16 #endif
int port_t
Definition: port.hpp:14
#define EXPORT_SYM
Definition: export.h:7
Definition: port.hpp:8