| 
            Last change
 on this file since 553 was             495, checked in by frichard, 15 years ago           | 
        
        
          | 
             
-Le programme envoie désormais les ordres GOTO en mode relatif 
-Il est possible de modifier la fréquence d'actualisation des modes tracking/transit depuis la boite de dialogue d'INDI 
 
           | 
        
        
          | 
            File size:
            445 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | // Definition of the ServerSocket class
 | 
|---|
| 2 | 
 | 
|---|
| 3 | #ifndef ServerSocket_class
 | 
|---|
| 4 | #define ServerSocket_class
 | 
|---|
| 5 | 
 | 
|---|
| 6 | #include "Socket.h"
 | 
|---|
| 7 | 
 | 
|---|
| 8 | 
 | 
|---|
| 9 | class ServerSocket : private Socket
 | 
|---|
| 10 | {
 | 
|---|
| 11 |  public:
 | 
|---|
| 12 | 
 | 
|---|
| 13 |   ServerSocket ( int port );
 | 
|---|
| 14 |   ServerSocket (){};
 | 
|---|
| 15 |   virtual ~ServerSocket();
 | 
|---|
| 16 | 
 | 
|---|
| 17 |   const ServerSocket& operator << ( const std::string& ) const;
 | 
|---|
| 18 |   const ServerSocket& operator >> ( std::string& ) const;
 | 
|---|
| 19 | 
 | 
|---|
| 20 |   void recv( std::string& s );
 | 
|---|
| 21 | 
 | 
|---|
| 22 |   void accept ( ServerSocket& );
 | 
|---|
| 23 | 
 | 
|---|
| 24 | };
 | 
|---|
| 25 | 
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #endif
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.