Artifact cb6fc6ef5f06fac3350e8f1872a8a4f8244ffd18
File
tools/cvs2fossil/lib/c2f_plodmgr.tcl
part of check-in
[84de38d73f]
- Added a lot of skeleton files for the revision and symbol data structures, for both project and file level.
by
aku on
2007-10-10 03:28:22.
Also file
tools/cvs2fossil/lib/c2f_plodmgr.tcl
part of check-in
[38b967dcf5]
- Merge aku's CVS import changes into the main line. Fix a small bug in diff.c.
by
drh on
2007-11-17 00:29:42.
## -*- tcl -*-
# # ## ### ##### ######## ############# #####################
## Copyright (c) 2007 Andreas Kupries.
#
# This software is licensed as described in the file LICENSE, which
# you should have received as part of this distribution.
#
# This software consists of voluntary contributions made by many
# individuals. For exact contribution history, see the revision
# history and logs, available at http://fossil-scm.hwaci.com/fossil
# # ## ### ##### ######## ############# #####################
## Lines of Development in a project (Symbols, and the trunk).
# # ## ### ##### ######## ############# #####################
## Requirements
package require Tcl 8.4 ; # Required runtime.
package require snit ; # OO system.
# # ## ### ##### ######## ############# #####################
##
snit::type ::vc::fossil::import::cvs::project::lodmgr {
# # ## ### ##### ######## #############
## Public API
constructor {} {
return
}
# # ## ### ##### ######## #############
## State
# # ## ### ##### ######## #############
## Internal methods
# # ## ### ##### ######## #############
## Configuration
pragma -hastypeinfo no ; # no type introspection
pragma -hasinfo no ; # no object introspection
pragma -hastypemethods no ; # type is not relevant.
pragma -simpledispatch yes ; # simple fast dispatch
# # ## ### ##### ######## #############
}
namespace eval ::vc::fossil::import::cvs::project {
namespace export lodmgr
}
# # ## ### ##### ######## ############# #####################
## Ready
package provide vc::fossil::import::cvs::project::lodmgr 1.0
return