|
From: <ad...@us...> - 2006-03-07 00:12:36
|
Revision: 34 Author: adamluk Date: 2006-03-06 16:12:23 -0800 (Mon, 06 Mar 2006) ViewCVS: http://svn.sourceforge.net/g3l/?rev=34&view=rev Log Message: ----------- Added Paths: ----------- src/trunk/include/G3L_ENGINE/algorithms/ src/trunk/include/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp src/trunk/include/G3L_ENGINE/algorithms/g3l_quicksort.h src/trunk/source/G3L_ENGINE/algorithms/ src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.cpp.swp src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp src/trunk/source/G3L_ENGINE/algorithms/g3l_quicksort.cpp Added: src/trunk/include/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp =================================================================== (Binary files differ) Property changes on: src/trunk/include/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: src/trunk/include/G3L_ENGINE/algorithms/g3l_quicksort.h =================================================================== --- src/trunk/include/G3L_ENGINE/algorithms/g3l_quicksort.h (rev 0) +++ src/trunk/include/G3L_ENGINE/algorithms/g3l_quicksort.h 2006-03-07 00:12:23 UTC (rev 34) @@ -0,0 +1,38 @@ +/* + * G3L - Generation Three Language + * The New Modern Programming Language + * + * http://www.G3L.net + * g3l...@li... + * + * This project is released under the terms of the GNU General Public Licence. + * You can Read the license here: http://www.gnu.org/licenses/gpl.html +/* + +/* + * Short Description + * + * @author Adam Livesley <ada...@gm...> + * @copyright Copyright (c) 2005 G3L Dev Team. + * @licence GPL + * @version 1.00.0a + * @category G3L_ENGINE + * @package G3L + * @todo none + * @date 06/03/06 + */ + +#ifndef G3L_ALGORITHM_QUICKSORT_INC +#define G3L_ALGORITHM_QUICKSORT_INC + +#include "g3l_algorithms.h" + +template<class T> +G3L_Algorithms class G3L_Quicksort : public G3L_Base +{ + G3L_Quicksort(); + ~G3L_Quicksort(); +}; + +#endif /*G3L_ALGORITHM_QUICKSORT*/ + Added: src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.cpp.swp =================================================================== (Binary files differ) Property changes on: src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.cpp.swp ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp =================================================================== (Binary files differ) Property changes on: src/trunk/source/G3L_ENGINE/algorithms/.g3l_quicksort.h.swp ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: src/trunk/source/G3L_ENGINE/algorithms/g3l_quicksort.cpp =================================================================== --- src/trunk/source/G3L_ENGINE/algorithms/g3l_quicksort.cpp (rev 0) +++ src/trunk/source/G3L_ENGINE/algorithms/g3l_quicksort.cpp 2006-03-07 00:12:23 UTC (rev 34) @@ -0,0 +1,31 @@ +/* + * G3L - Generation Three Language + * The New Modern Programming Language + * + * http://www.G3L.net + * g3l...@li... + * + * This project is released under the terms of the GNU General Public Licence. + * You can Read the license here: http://www.gnu.org/licenses/gpl.html +/* + +/* + * Short Description + * + * @author Adam Livesley <ada...@gm...> + * @copyright Copyright (c) 2005 G3L Dev Team. + * @licence GPL + * @version 1.00.0a + * @category G3L_ENGINE + * @package G3L + * @todo none + * @date 06/03/06 + */ + +#include <G3L_ENGINE/algorithms/g3l_quicksort.h> + +G3L_Quicksort::G3L_Quicksort() +{ + // quick sort code +} + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |