Last change
on this file since 616 was 502, checked in by frichard, 15 years ago |
-BAOControl : petite interface permettant de contrôler les antennes via le pilote indi_BAO
-Le pilote indi_BAO utilise désormais indilib v 0.7
|
-
Property svn:executable
set to
*
|
File size:
305 bytes
|
Line | |
---|
1 | // SocketException class
|
---|
2 |
|
---|
3 |
|
---|
4 | #ifndef SocketException_class
|
---|
5 | #define SocketException_class
|
---|
6 |
|
---|
7 | #include <string>
|
---|
8 |
|
---|
9 | class SocketException
|
---|
10 | {
|
---|
11 | public:
|
---|
12 | SocketException ( std::string s ) : m_s ( s ) {};
|
---|
13 | ~SocketException (){};
|
---|
14 |
|
---|
15 | std::string description() { return m_s; }
|
---|
16 |
|
---|
17 | private:
|
---|
18 |
|
---|
19 | std::string m_s;
|
---|
20 |
|
---|
21 | };
|
---|
22 |
|
---|
23 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.