C Board  

Go Back   C Board > General Programming Boards > Networking/Device Communication

Reply
 
LinkBack Thread Tools Display Modes
Old 06-15-2004, 12:05 AM   #1
& the hat of GPL slaying
 
Thantos's Avatar
 
Join Date: Sep 2001
Posts: 5,732
My Socket Input / Output Class

Version: 0.0000000001

Well I got the basics done for the class. Right now I can do
Code:
sockio<<"Blah"<<123<<123.43<<endl;
and even input.
Code:
 int x; sockio >> x;
Or both at the same time:
Code:
int x; sockio<<"What is your age: ">>x;
It is far from complete and needs some work done to it for clean up. Since the code is about 500 lines and I plan to update it as I make changes I set up a page for it. Since I'm about to pass out the details aren't a lot but I would like to hear your inital comments to it. Thanks

http://www.mikemill.org/cgi-bin/home.cgi?sockio

Oh and if you can't get to the page that means my internet connection is down and I'll get it up ASAP
Thantos is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help to build network class weeb0 C++ Programming 0 02-01-2006 11:33 AM
File I/O with 2 input and 1 output file Sandy C Programming 1 04-19-2003 12:06 PM
structure vs class sana C++ Programming 13 12-02-2002 07:18 AM
Warnings, warnings, warnings? spentdome C Programming 25 05-27-2002 06:49 PM
gcc problem bjdea1 Linux Programming 13 04-29-2002 06:51 PM


All times are GMT -6. The time now is 02:30 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22