How to break module into multiple file.

Jesse Phillips jessekphillips+D at gmail.com
Wed May 18 10:34:26 PDT 2011


Matthew Ong Wrote:

> I agreed with what alexander is voicing out. How about the process 
> within a team development. That current D layout seem to limit that one 
> file to a single developer. Instead of multiple class multiple developer 
> within the same module.
> Using the example:
> HashMap & Unit tested implemented by matthew
> LinkedList & Unit tested implemented by john
> but the same module is handled by Jonathan for other classes?
> 
> Perhaps some one can show how this is done with Subversion / CVS for 
> this team?

There is no reason Mathew and John can't implement those in the same file, at the same time. Well assuming your using a CVS.

Mathew:
svn checkout
// change stuff

John:
svn checkout
// change stuff

Mathew:
svn commit
// change stuff

John:
svn commit
svn update
svn commit
// change stuff

Mathew:
svn commit
svn update
svn commit


More information about the Digitalmars-d-learn mailing list