Module: Dylan-User Synopsis: Environment-Source Control Interface Author: Scott McKay Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc. All rights reserved. License: Functional Objects Library Public License Version 1.0 Dual-license: GNU Lesser General Public License Warranty: Distributed WITHOUT WARRANTY OF ANY KIND define module source-control-manager create , sccs-name, sccs-label, sccs-title, default-source-control-system, find-source-control-system-named, register-source-control-class, unregister-source-control-class, current-source-control-system, current-source-control-system-setter; create , , , command-pathname; create , option-label, option-keyword, option-type, option-getter, option-documentation, option-default, option-required?; create , , , command-title, command-class, command-options, source-control-login-info, source-control-login, source-control-command-info; create , , , , , ; create , sccs-command-implemented?, , *claim-command-string*, , *check-out-command-string*, , *check-in-command-string*, , *abandon-command-string*, , *merge-command-string*, , *diff-command-string*, , *report-command-string*, , *add-command-string*, , *remove-command-string*; end module source-control-manager; define module source-control-manager-internals use functional-dylan; use simple-format; use threads; use locators; use settings; use commands; use release-info; use source-control-manager, export: all; export class-for-sccs-command, sccs-command-options, sccs-command-title; export *current-source-control-system*, note-source-control-system-selected; end module source-control-manager-internals;