MCWriteOnlyRepository.st
author Claus Gittinger <cg@exept.de>
Tue, 11 Sep 2012 23:31:28 +0200
changeset 709 754ed3fb7cb1
parent 368 d160453baf07
child 901 6a1a6e48c0b8
permissions -rw-r--r--
category change

"{ Package: 'stx:goodies/monticello' }"

MCRepository subclass:#MCWriteOnlyRepository
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Repositories'
!


!MCWriteOnlyRepository methodsFor:'as yet unclassified'!

includesVersionNamed: aString
	^ false
!

versionWithInfo: aVersionInfo ifAbsent: aBlock
	^ aBlock value
! !

!MCWriteOnlyRepository class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.4 2012-09-11 21:31:28 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriteOnlyRepository.st,v 1.4 2012-09-11 21:31:28 cg Exp $'
!

version_SVN
    ^ '§Id: MCWriteOnlyRepository.st 5 2010-08-29 07:30:29Z vranyj1 §'
! !