52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4FRClient.hh,v 1.4 1999/12/27 07:49:11 stanaka Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
// G4FRClient.hh
|
|
// Yasuhide Sawada and Satoshi Tanaka
|
|
|
|
#ifdef G4VIS_BUILD_VRML_DRIVER
|
|
|
|
#ifndef G4_FR_CLIENT_HH
|
|
#define G4_FR_CLIENT_HH
|
|
|
|
#include "globals.hh"
|
|
|
|
class FRClient;
|
|
|
|
class G4FRClient {
|
|
// G4FRClient can SEND only!
|
|
public:
|
|
G4FRClient();
|
|
virtual ~G4FRClient();
|
|
|
|
G4bool connect(const char *hostname, G4int port);
|
|
void close();
|
|
|
|
G4int getPort() const;
|
|
|
|
G4bool isConnected() const { return connected; }
|
|
G4bool is_open () const { return connected; }
|
|
|
|
G4FRClient& operator << (G4int);
|
|
G4FRClient& operator << (G4double);
|
|
G4FRClient& operator << (const char *);
|
|
G4FRClient& operator << (G4FRClient& (*)(G4FRClient&));
|
|
private:
|
|
FRClient *fFRClient;
|
|
G4bool connected;
|
|
G4int fPort;
|
|
};
|
|
|
|
//manipulator
|
|
//G4FRClient& endl(G4FRClient&);
|
|
|
|
#endif //G4_FR_CLIENT_HH
|
|
#endif //G4VIS_BUILD_VRML_DRIVER
|