ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/c++/SmallNet.cpp
Revision: 1.1
Committed: Wed Jan 24 19:33:13 2001 UTC (23 years, 8 months ago) by ab11
Branch: MAIN
Log Message:
Skeleton class for Networking (cpp)

File Contents

# User Rev Content
1 ab11 1.1 #include "SmallNet.h"
2    
3     SmallNet::SmallNet(){
4    
5     return;
6    
7     }; // SmallNet
8    
9    
10     int SmallNet::connectHeartBeat(string host, int port){
11    
12    
13     return 0;
14    
15     }; // connectHeartBeat
16    
17    
18     string SmallNet::heartBeatSend(string text){
19    
20    
21     return "";
22    
23     }; // heartBeatSend
24    
25    
26     void SmallNet::closeHeartBeatConnection(){
27    
28    
29     return;
30    
31     }; // closeHeartBeatConnection
32    
33    
34     int SmallNet::connectConfig(){
35    
36    
37     return 0;
38    
39     }; // makeConfigConnection
40    
41     string SmallNet::configSend(string text){
42    
43    
44    
45     return "";
46    
47     }; // configSend
48