up vote 1 down vote favorite
2
share [g+] share [fb]

Each Delphi's VCL source file has header like this:

{*******************************************************}
{                                                       }
{           CodeGear Delphi Runtime Library             }
{                                                       }
{ Copyright(c) 1995-2010 Embarcadero Technologies, Inc. }
{                                                       }
{   Copyright and license exceptions noted in source    }
{                                                       }
{*******************************************************}

is there any tools/methods available in Delphi IDE or ModelMaker Code Explorer that can let us construct this header graphic faster?

link|improve this question

52% accept rate
feedback

3 Answers

up vote 11 down vote accepted

I would create a Live Template that lets you fill in automatically all the data that you want.

You can find out more about creating live templates here:

http://delphi.wikia.com/wiki/Delphi%5FLive%5FTemplates

Live templates are extremely powerful and flexible. You can get them to do almost anything that you want in the code editor.

link|improve this answer
feedback

You can also use the Unit Header macro template from the Editor Experts in GExperts

link|improve this answer
feedback

cnPack has a good Source Template options, it allow you to insert Unit Header for Delphi & C++ source files, also Class header & procedure headers too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.