theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
Loading...
Searching...
No Matches
Internal - instance storage

tclsq3lite is using a class-attribute as instance-storage. …

+ Collaboration diagram for Internal - instance storage:

tclsq3lite is using a class-attribute as instance-storage. …

introduction
The instance-storage is defined using the variable keyword:
package require tclmkkernel
namespace import tclmkkernel::*
# package-item
::oo::class create MyClass {
superclass MkBufferC
variable my_data
constructor {val} {
set my_data $val
}
}