submitted 1.2.0

This commit is contained in:
Guenter Obiltschnig
2006-08-29 07:10:35 +00:00
parent f476bd6b32
commit 2d4078f392
1428 changed files with 25715 additions and 12456 deletions

View File

@@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/1.1.0/Net/samples/httpget/Makefile#1 $
# $Id: //poco/1.2/Net/samples/httpget/Makefile#1 $
#
# Makefile for Poco httpget
#
@@ -12,6 +12,6 @@ objects = httpget
target = httpget
target_version = 1
target_libs = PocoFoundation PocoXML PocoNet PocoUtil
target_libs = PocoUtil PocoNet PocoXML PocoFoundation
include $(POCO_BASE)/build/rules/exec

View File

@@ -1,7 +1,7 @@
#
# sample.vmsbuild
#
# $Id: //poco/1.1.0/Net/samples/httpget/httpget.vmsbuild#1 $
# $Id: //poco/1.2/Net/samples/httpget/httpget.vmsbuild#1 $
#
EXE=httpget
httpget

View File

@@ -1,7 +1,7 @@
//
// httpget.cpp
//
// $Id: //poco/1.1.0/Net/samples/httpget/src/httpget.cpp#2 $
// $Id: //poco/1.2/Net/samples/httpget/src/httpget.cpp#1 $
//
// This sample demonstrates the HTTPClientSession class.
//
@@ -32,24 +32,24 @@
//
#include "Net/HTTPClientSession.h"
#include "Net/HTTPRequest.h"
#include "Net/HTTPResponse.h"
#include "Foundation/StreamCopier.h"
#include "Foundation/Path.h"
#include "Foundation/URI.h"
#include "Foundation/Exception.h"
#include "Poco/Net/HTTPClientSession.h"
#include "Poco/Net/HTTPRequest.h"
#include "Poco/Net/HTTPResponse.h"
#include "Poco/StreamCopier.h"
#include "Poco/Path.h"
#include "Poco/URI.h"
#include "Poco/Exception.h"
#include <iostream>
using Net::HTTPClientSession;
using Net::HTTPRequest;
using Net::HTTPResponse;
using Net::HTTPMessage;
using Foundation::StreamCopier;
using Foundation::Path;
using Foundation::URI;
using Foundation::Exception;
using Poco::Net::HTTPClientSession;
using Poco::Net::HTTPRequest;
using Poco::Net::HTTPResponse;
using Poco::Net::HTTPMessage;
using Poco::StreamCopier;
using Poco::Path;
using Poco::URI;
using Poco::Exception;
int main(int argc, char** argv)