tie_dsource.tcl
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 package require snit
00016 package require tie
00017
00018
00019
00020
00021 snit::type ::tie::std::dsource {
00022
00023
00024
00025
00026 pragma -hastyperet s no
00027 pragma -hasinfo no
00028
00029 # ### ### ### ######### ######### #########
00030 ## API : Construction & Destruction
00031
00032 constructor (type args) {
00033 set delegate $args
00034 return
00035 }
00036
00037
00038
00039
00040 delegate ret * to delegate
00041
00042 # ### ### ### ######### ######### #########
00043 ## Internal : Instance data
00044
00045 variable delegate ; # The object to delegate to.
00046
00047 # ### ### ### ######### ######### #########
00048 }
00049
00050 # ### ### ### ######### ######### #########
00051 ## Ready to go
00052
00053 ::tie::register ::tie::std::dsource as dsource
00054 package provide tie::std::dsource 1.0
00055