Re: Splitting a long line.

2003-02-20 Thread David Buddrige
Thanks heaps guys (John and David) 8-) David. John W. Krahn wrote: David Buddrige wrote: Hi all, I have a group of C++ source files where I have the following text on a single Lines: class MyReallyLongClassNameThatIsTooLongToFitInEightyCharacters : public SomeClassTemplate What I want to

RE: Splitting a long line.

2003-02-20 Thread Wagner, David --- Senior Programmer Analyst --- WGO
David Buddrige wrote: > Hi all, > > I have a group of C++ source files where I have the following text on > a single Lines: > > class MyReallyLongClassNameThatIsTooLongToFitInEightyCharacters : > public SomeClassTemplate > > What I want to do is to split this line at the ":" so that everything >

Re: Splitting a long line.

2003-02-20 Thread John W. Krahn
David Buddrige wrote: > > Hi all, > > I have a group of C++ source files where I have the following text on a > single Lines: > > class MyReallyLongClassNameThatIsTooLongToFitInEightyCharacters : public > SomeClassTemplate > > What I want to do is to split this line at the ":" so that everythin

Splitting a long line.

2003-02-20 Thread David Buddrige
Hi all, I have a group of C++ source files where I have the following text on a single Lines: class MyReallyLongClassNameThatIsTooLongToFitInEightyCharacters : public SomeClassTemplate What I want to do is to split this line at the ":" so that everything after the colon appears on the next li