File: Class.3

package info (click to toggle)
itcl3 3.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,596 kB
  • sloc: ansic: 9,911; sh: 421; tcl: 153; makefile: 65
file content (55 lines) | stat: -rw-r--r-- 1,261 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'\"
'\" Copyright (c) 1993-1998  Lucent Technologies, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
.so man.macros
.TH Itcl_CreateClass 3 3.0 itcl "[incr\ Tcl] Library Procedures"
.BS
'\" Note:  do not modify the .SH NAME line immediately below!
.SH NAME
Itcl_CreateClass, Itcl_DeleteClass, Itcl_FindClass, Itcl_IsClass, Itcl_IsClassNamespace \- Manipulate classes.
.SH SYNOPSIS
.nf
\fB#include <itclInt.h>\fR
.sp
int
\fBItcl_CreateClass\fR(\fIinterp, path, info, rPtr\fR)
.sp
int
\fBItcl_DeleteClass\fR(\fIinterp, cdefnPtr\fR)
.sp
ItclClass *
\fBItcl_FindClass\fR(\fIinterp, path, autoload\fR)
.sp
int
\fBItcl_IsClass\fR(\fIcmd\fR)
.sp
int
\fBItcl_IsClassNamespace\fR(\fInamesp\fR)
.SH ARGUMENTS
.AP Tcl_Interp *interp in
Interpreter to modify.
.AP "CONST char" *path in
Path of the class.
.AP ItclObjectInfo *info in
TODO.
.AP ItclClass **rPtr in/out
The address of the pointer to modify.
.AP ItclClass *cdefnPtr in
Pointer to class info struct.
.AP int autoload in
Flag value for if the class should be autoloaded
.AP Tcl_Command cmd in
Command to check.
.AP Tcl_Namespace *namesp in
Namespace to check.
.BE

.SH DESCRIPTION
.PP

.SH KEYWORDS
class, find