Click here to Skip to main content
15,895,011 members
Articles / Programming Languages / C++

A Generic Pipeline Framework for C++

Rate me:
Please Sign up or sign in to vote.
4.70/5 (11 votes)
23 Sep 2006CPOL11 min read 73.4K   1.6K   38  
Presentation of a generic, extendable C++ pipeline framework
/**
	@class PipeSegmentBaseAdapter
	@brief Provides an empty implementation (adapter) on the IPipeSegmentBaseAdapter

	This is an adapter class (class with empty implementation on all methods defined by
	an interface) on the IPipeSegmentBase interface.

	@version 0.1

	@author
		- Patrick McMichael

	@license

	This program is released to the public domain by GATS, Inc.
	(www.gats-inc.com) subject to the following conditions.  It is
	provided "AS IS" without any warranty expressed or implied,
	including the warranty of non-infringement and the implied
	warranties of merchantability and fitness for a particular
	purpose.  GATS will not be liable for any loss or damage
	incurred as a result of using the software.  In no event will
	GATS be liable for any special, indirect or consequential
	damages or lost profits, or for any third party claims of any
	kind.  By installing, using or copying this software you agree
	to accept these terms and conditions.  Any other use is
	expressly forbidden.

	@see
		- PipeSegmentBaseAdapter.h
		- IPipeSegmentBase
		- IPipeSegment
	@bug	None known

*/

#include "PipeSegmentBaseAdapter.h"

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions