diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-30 09:38:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-09-30 09:38:49 (GMT) |
commit | 09b2762b8a6317ae6ef595df2c9dd239fd4749b3 (patch) | |
tree | b386aae8fbb6857aee667e0c4c45baf929fa445d | |
parent | 5d83a3919d8912254cb477b87abab826cf78bc53 (diff) | |
download | tcl-09b2762b8a6317ae6ef595df2c9dd239fd4749b3.zip tcl-09b2762b8a6317ae6ef595df2c9dd239fd4749b3.tar.gz tcl-09b2762b8a6317ae6ef595df2c9dd239fd4749b3.tar.bz2 |
Restore copyright assignments and some improved comments in tclOO.decls: previous commit was a blind revert of [371bcd0714], but those changes should not have been reverted.
-rw-r--r-- | generic/tclOO.decls | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/generic/tclOO.decls b/generic/tclOO.decls index 31d1113..f22390e 100644 --- a/generic/tclOO.decls +++ b/generic/tclOO.decls @@ -1,12 +1,25 @@ +# tclOO.decls -- +# +# This file contains the declarations for all supported public functions +# that are exported by the TclOO package that is embedded within the Tcl +# library via the stubs table. This file is used to generate the +# tclOODecls.h, tclOOIntDecls.h, tclOOStubInit.c, and tclOOStubLib.c +# files. +# +# Copyright (c) 2008-2013 by Donal K. Fellows. +# +# See the file "license.terms" for information on usage and redistribution of +# this file, and for a DISCLAIMER OF ALL WARRANTIES. + library tclOO +scspec TCLOOAPI ###################################################################### -# public API +# Public API, exposed for general users of TclOO. # interface tclOO hooks tclOOInt -scspec TCLOOAPI declare 0 { Tcl_Object Tcl_CopyObjectInstance(Tcl_Interp *interp, @@ -116,7 +129,9 @@ declare 28 { } ###################################################################### -# private API, exposed to support advanced OO systems that plug in on top +# Private API, exposed to support advanced OO systems that plug in on top of +# TclOO; not intended for general use and does not have any commitment to +# long-term support. # interface tclOOInt |