Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
FluorescentCIAAfricanAmerican 3bf9df6b27 1 4 years ago
..
Makefile.in 1 4 years ago
README 1 4 years ago
argcargv.i 1 4 years ago
attribute.i 1 4 years ago
boost_shared_ptr.i 1 4 years ago
carrays.i 1 4 years ago
ccomplex.i 1 4 years ago
cdata.i 1 4 years ago
cmalloc.i 1 4 years ago
cni.i 1 4 years ago
complex.i 1 4 years ago
cpointer.i 1 4 years ago
cstring.i 1 4 years ago
cwstring.i 1 4 years ago
defarg.swg 1 4 years ago
director.swg 1 4 years ago
embed.i 1 4 years ago
embed15.i 1 4 years ago
exception.i 1 4 years ago
factory.i 1 4 years ago
file.i 1 4 years ago
implicit.i 1 4 years ago
jstring.i 1 4 years ago
pyapi.swg 1 4 years ago
pybackward.swg 1 4 years ago
pyclasses.swg 1 4 years ago
pycomplex.swg 1 4 years ago
pycontainer.swg 1 4 years ago
pydocs.swg 1 4 years ago
pyerrors.swg 1 4 years ago
pyfragments.swg 1 4 years ago
pyhead.swg 1 4 years ago
pyinit.swg 1 4 years ago
pyiterators.swg 1 4 years ago
pymacros.swg 1 4 years ago
pyopers.swg 1 4 years ago
pyprimtypes.swg 1 4 years ago
pyrun.swg 1 4 years ago
pyruntime.swg 1 4 years ago
pystdcommon.swg 1 4 years ago
pystrings.swg 1 4 years ago
python.swg 1 4 years ago
pythonkw.swg 1 4 years ago
pythreads.swg 1 4 years ago
pytuplehlp.swg 1 4 years ago
pytypemaps.swg 1 4 years ago
pyuserdir.swg 1 4 years ago
pywstrings.swg 1 4 years ago
std_alloc.i 1 4 years ago
std_basic_string.i 1 4 years ago
std_carray.i 1 4 years ago
std_char_traits.i 1 4 years ago
std_common.i 1 4 years ago
std_complex.i 1 4 years ago
std_container.i 1 4 years ago
std_deque.i 1 4 years ago
std_except.i 1 4 years ago
std_ios.i 1 4 years ago
std_iostream.i 1 4 years ago
std_list.i 1 4 years ago
std_map.i 1 4 years ago
std_multimap.i 1 4 years ago
std_multiset.i 1 4 years ago
std_pair.i 1 4 years ago
std_set.i 1 4 years ago
std_sstream.i 1 4 years ago
std_streambuf.i 1 4 years ago
std_string.i 1 4 years ago
std_vector.i 1 4 years ago
std_vectora.i 1 4 years ago
std_wios.i 1 4 years ago
std_wiostream.i 1 4 years ago
std_wsstream.i 1 4 years ago
std_wstreambuf.i 1 4 years ago
std_wstring.i 1 4 years ago
stl.i 1 4 years ago
typemaps.i 1 4 years ago
wchar.i 1 4 years ago

README

/* -----------------------------------------------------------------------------
*
* User interfaces: include these ones as needed
*
* ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
* Special types and user helpers
* ----------------------------------------------------------------------------- */

argcargv.i Handler for (int argc, char **argv)
attribute.i Convert a pair of set/get methods into a "native" python attribute
ccomplex.i C99 complex type
complex.i C99 or C++ complex type
cstring.i Various forms of C character string handling
cwstring.i Various forms of C wchar_t string handling
embed.i embedding the Python interpreter in something else
embed15.i embedding the Python interpreter in something else
file.i FILE C type
implicit.i Allow the use of implicit C++ constructors
wchar.i wchar_t C type

/* -----------------------------------------------------------------------------
* C++ STD + STL
* ----------------------------------------------------------------------------- */

std_alloc.i allocator
std_basic_string.i basic string
std_char_traits.i char traits
std_complex.i complex
std_deque.i deque
std_except.i exceptions
std_ios.i ios
std_iostream.i istream/ostream
std_list.i list
std_map.i map
std_multimap.i multimap
std_multiset.i multiset
std_pair.i pair
std_set.i set
std_sstream.i string stream
std_streambuf.i streambuf
std_string.i string
std_vector.i vector
std_wios.i wios
std_wiostream.i wistream/wostream
std_wsstream.i wstring stream
std_wstreambuf.i wstreambuf
std_wstring.i wstring



/* -----------------------------------------------------------------------------
/*
* Implementation files: don't look at them unless you are realy drunk
*
* ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
* Basic files
* ----------------------------------------------------------------------------- */

python.swg Main language file, it just includes what is needed.
pyuserdir.swg User visible directives (%pythonnondynamic, etc)
pymacros.swg Internal macros used for typemaps
pyfragments.swg Allow the user to overload the default fragments
pyopers.swg Python operations (+=, *=, etc)
pythonkw.swg Python keywords and special names
pyinit.swg Python Init method

/* -----------------------------------------------------------------------------
* The runtime part
* ----------------------------------------------------------------------------- */

pyruntime.swg Main runtime file definition
pyapi.swg SWIG/Pyton API declarations
pyrun.swg Python run-time code

/* -----------------------------------------------------------------------------
* Internal typemap specializations
* ----------------------------------------------------------------------------- */

pyswigtype.swg SWIGTYPE
pystrings.swg Char strings (char *)
pywstrings.swg Wchar Strings (wchar_t *)
pyprimtypes.swg Primitive types (shot,int,double,etc)
pycomplex.swg PyComplex and helper for C/C++ complex types
pydocs.swg Typemaps documentation

/* -----------------------------------------------------------------------------
* C++ STD + STL
* ----------------------------------------------------------------------------- */

pycontainer.swg python container iterators
std_common.i general common code for the STD/STL implementation
std_container.i general common code for the STD/STL containers


/*-----------------------------------------------------------------------------
* Backward compatibility and deprecated
* ----------------------------------------------------------------------------- */

std_vectora.i vector + allocator (allocators are now supported in STD/STL)
typemaps.i old in/out typemaps (doen't need to be included)
defarg.swg for processing default arguments with shadow classes