ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/HostUpdate/Host.cpp
Revision: 9
Committed: 2003-11-05T22:59:04-08:00 (21 years, 7 months ago) by Douglas Thrift
File size: 171 byte(s)
Log Message:
Added Host and stuff.

File Contents

# User Rev Content
1 Douglas Thrift 9 // Host Update
2     //
3     // Douglas Thrift
4     //
5     // $Id$
6    
7     #include "Host.hpp"
8    
9     Host::Host()
10     {
11     address = new struct sockaddr;
12     }
13    
14     Host::~Host()
15     {
16     delete address;
17     }