Boost logo

Boost-Commit :

From: lists.drrngrvy_at_[hidden]
Date: 2008-05-21 12:46:34


Author: drrngrvy
Date: 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
New Revision: 45614
URL: http://svn.boost.org/trac/boost/changeset/45614

Log:
2of2: fixing corrupted repository.
Added:
   sandbox/SOC/2007/cgi/trunk/boost/cgi/import/buffer.hpp (contents, props changed)
   sandbox/SOC/2007/cgi/trunk/boost/cgi/import/io_service.hpp (contents, props changed)
   sandbox/SOC/2007/cgi/trunk/boost/cgi/import/read.hpp (contents, props changed)
   sandbox/SOC/2007/cgi/trunk/boost/cgi/import/streambuf.hpp (contents, props changed)
   sandbox/SOC/2007/cgi/trunk/boost/cgi/import/write.hpp (contents, props changed)

Added: sandbox/SOC/2007/cgi/trunk/boost/cgi/import/buffer.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2007/cgi/trunk/boost/cgi/import/buffer.hpp 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
@@ -0,0 +1,26 @@
+// -- buffer.hpp --
+//
+// Copyright (c) Darren Garvey 2007
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+////////////////////////////////////////////////////////////////
+#ifndef CGI_BUFFER_HPP_INCLUDED__
+#define CGI_BUFFER_HPP_INCLUDED__
+
+#include <boost/asio/buffer.hpp>
+
+namespace cgi {
+ namespace common {
+
+ /// Import the Boost.Asio overloads.
+ using boost::asio::buffer;
+
+ } // namespace common
+
+ using common::buffer;
+
+} // namespace cgi
+
+#endif // CGI_HPP_INCLUDED__

Added: sandbox/SOC/2007/cgi/trunk/boost/cgi/import/io_service.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2007/cgi/trunk/boost/cgi/import/io_service.hpp 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
@@ -0,0 +1,27 @@
+// -- common/io_service.hpp --
+//
+// Copyright (c) Darren Garvey 2007.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+////////////////////////////////////////////////////////////////
+#ifndef CGI_COMMON_IO_SERVICE_HPP_INCLUDED__
+#define CGI_COMMON_IO_SERVICE_HPP_INCLUDED__
+
+//#if _MSC_VER > 1020
+//#pragma once
+//#endif
+
+#include <boost/asio/io_service.hpp>
+
+namespace cgi {
+ namespace common {
+
+ using boost::asio::io_service;
+
+ } // namespace common
+} // namespace cgi
+
+#endif // CGI_COMMON_IO_SERVICE_HPP_INCLUDED__
+

Added: sandbox/SOC/2007/cgi/trunk/boost/cgi/import/read.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2007/cgi/trunk/boost/cgi/import/read.hpp 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
@@ -0,0 +1,24 @@
+// -- read.hpp --
+//
+// Copyright (c) Darren Garvey 2007.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+////////////////////////////////////////////////////////////////
+#ifndef CGI_READ_HPP_INCLUDED
+#define CGI_READ_HPP_INCLUDED
+
+#include <boost/asio/read.hpp>
+
+namespace cgi {
+ namespace common {
+
+ using boost::asio::read;
+ using boost::asio::async_read;
+
+ } // namespace common
+} // namespace cgi
+
+#endif // CGI_READ_HPP_INCLUDED
+

Added: sandbox/SOC/2007/cgi/trunk/boost/cgi/import/streambuf.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2007/cgi/trunk/boost/cgi/import/streambuf.hpp 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
@@ -0,0 +1,25 @@
+// -- streambuf.hpp --
+//
+// Copyright (c) Darren Garvey 2007.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+////////////////////////////////////////////////////////////////
+#ifndef CGI_STREAMBUF_HPP_INCLUDED__
+#define CGI_STREAMBUF_HPP_INCLUDED__
+
+#include <boost/asio/streambuf.hpp>
+
+namespace cgi {
+ namespace common {
+
+ using boost::asio::streambuf;
+
+ } // namespace common
+
+ using common::streambuf;
+
+} // namespace cgi
+
+#endif // CGI_STREAMBUF_HPP_INCLUDED__

Added: sandbox/SOC/2007/cgi/trunk/boost/cgi/import/write.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2007/cgi/trunk/boost/cgi/import/write.hpp 2008-05-21 12:46:33 EDT (Wed, 21 May 2008)
@@ -0,0 +1,23 @@
+// -- write.hpp --
+//
+// Copyright (c) Darren Garvey 2007.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+////////////////////////////////////////////////////////////////
+#ifndef CGI_WRITE_HPP_INCLUDED
+#define CGI_WRITE_HPP_INCLUDED
+
+#include <boost/asio/write.hpp>
+
+namespace cgi {
+ namespace common {
+
+ using boost::asio::write;
+ using boost::asio::async_write;
+
+ } // namespace common
+} // namespace cgi
+
+#endif // CGI_WRITE_HPP_INCLUDED


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk