|
1
|
## -*- tcl -*- |
|
2
|
# # ## ### ##### ######## ############# ##################### |
|
3
|
## Copyright (c) 2007 Andreas Kupries. |
|
4
|
# |
|
5
|
# This software is licensed as described in the file LICENSE, which |
|
6
|
# you should have received as part of this distribution. |
|
7
|
# |
|
8
|
# This software consists of voluntary contributions made by many |
|
9
|
# individuals. For exact contribution history, see the revision |
|
10
|
# history and logs, available at http://fossil-scm.hwaci.com/fossil |
|
11
|
# # ## ### ##### ######## ############# ##################### |
|
12
|
|
|
13
|
## Trunk, the special main line of development in a file. |
|
14
|
|
|
15
|
# # ## ### ##### ######## ############# ##################### |
|
16
|
## Requirements |
|
17
|
|
|
18
|
package require Tcl 8.4 ; # Required runtime. |
|
19
|
package require snit ; # OO system. |
|
20
|
|
|
21
|
# # ## ### ##### ######## ############# ##################### |
|
22
|
## |
|
23
|
|
|
24
|
snit::type ::vc::fossil::import::cvs::file::trunk { |
|
25
|
# # ## ### ##### ######## ############# |
|
26
|
## Public API |
|
27
|
|
|
28
|
constructor {} { |
|
29
|
return |
|
30
|
} |
|
31
|
|
|
32
|
# # ## ### ##### ######## ############# |
|
33
|
## State |
|
34
|
|
|
35
|
# # ## ### ##### ######## ############# |
|
36
|
## Internal methods |
|
37
|
|
|
38
|
# # ## ### ##### ######## ############# |
|
39
|
## Configuration |
|
40
|
|
|
41
|
pragma -hastypeinfo no ; # no type introspection |
|
42
|
pragma -hasinfo no ; # no object introspection |
|
43
|
pragma -hastypemethods no ; # type is not relevant. |
|
44
|
pragma -simpledispatch yes ; # simple fast dispatch |
|
45
|
|
|
46
|
# # ## ### ##### ######## ############# |
|
47
|
} |
|
48
|
|
|
49
|
namespace eval ::vc::fossil::import::cvs::file { |
|
50
|
namespace export trunk |
|
51
|
} |
|
52
|
|
|
53
|
# # ## ### ##### ######## ############# ##################### |
|
54
|
## Ready |
|
55
|
|
|
56
|
package provide vc::fossil::import::cvs::file::trunk 1.0 |
|
57
|
return |
|
58
|
|