SWIG license change - The Examples and Lib move to a very permissive license in the LICENSE file, removing the BSD license restrictions as agreed by committers since it was inadvertently introduced. Remove some examples where the impact of the license change is not clear.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11874 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2010-02-27 23:26:02 +00:00
commit 4308dd03cf
346 changed files with 40 additions and 12158 deletions

View file

@ -1,12 +1,7 @@
/* -----------------------------------------------------------------------------
* See the LICENSE file for information on copyright, usage and redistribution
* of SWIG, and the README file for authors - http://www.swig.org/release.html.
*
* li_std_map_runme.cs
*
* SWIG C# tester for std_map.i
* Implementation by Yuval Baror (http://yuval.bar-or.org)
*
* This class tests all the functionality of the std_map.i wrapper.
* Upon successful testing, the main function doesn't print out anything.
* If any error is found - it will be printed on the screen.

View file

@ -1,13 +1,4 @@
/**
* @file std_queue.i
* @author gga
* @date Sun May 6 01:52:44 2007
*
* @brief test of std::queue
*
*
*/
// test of std::queue
%module li_std_queue
%include std_queue.i

View file

@ -1,18 +1,12 @@
/**
* @file li_std_set.i
* @author gga
* @date Tue May 1 02:52:47 2007
*
* @brief a test of set containers.
* Languages should define swig::LANGUAGE_OBJ to be
* an entity of their native pointer type which can be
* included in a STL container.
/*
* a test of set containers.
* Languages should define swig::LANGUAGE_OBJ to be
* an entity of their native pointer type which can be
* included in a STL container.
*
* For example:
* swig::LANGUAGE_OBJ is GC_VALUE in Ruby
* swig::LANGUAGE_OBJ is SwigPtr_PyObject in python
*
*
* For example:
* swig::LANGUAGE_OBJ is GC_VALUE in Ruby
* swig::LANGUAGE_OBJ is SwigPtr_PyObject in python
*/
%module li_std_set

View file

@ -1,13 +1,4 @@
/**
* @file std_stack.i
* @author gga
* @date Sun May 6 01:52:44 2007
*
* @brief test of std::stack
*
*
*/
// test of std::stack
%module li_std_stack
%include std_stack.i

View file

@ -3,9 +3,6 @@
# This is a simple speed benchmark suite for std containers,
# to verify their O(n) performance.
# It is not part of the standard tests.
#
# License:: SWIG
#
require 'benchmark'

View file

@ -1,13 +1,4 @@
/**
* @file ruby_li_std_speed.i
* @author gga
* @date Fri May 18 18:03:15 2007
*
* @brief A speed test of the ruby stl
*
*
*/
// A speed test of the ruby stl
%module ruby_li_std_speed
%include <std_list.i>