| Topic: |
DEVELOP > c-Plus-Plus |
| User: |
"Nullstyle" |
| Date: |
22 Nov 2003 07:45:43 PM |
| Object: |
Creating C++ Header Files |
Hi there guys. I need a little advice on how to create C++ header
files using the Borland C++ 5.5.1 compiler. Thanks in advance.
.
|
|
| User: "Victor Bazarov" |
|
| Title: Re: Creating C++ Header Files |
22 Nov 2003 07:50:58 PM |
|
|
"Nullstyle" <pang_yan_han@hotmail.com> wrote...
Hi there guys. I need a little advice on how to create C++ header
files using the Borland C++ 5.5.1 compiler. Thanks in advance.
C++ headers are (in all cases I've seen) are just text files.
You don't need a compiler to "create" them. Just type what
you need in the header in _any_ text editor and save the file
where you need it under the name you need.
For more Borland questions please visit borland.public.cpp.*
newsgroups.
Victor
.
|
|
|
|
| User: "EventHelix.com" |
|
| Title: Re: Creating C++ Header Files |
23 Nov 2003 09:31:28 AM |
|
|
Just create a text file with .h extension and you should be all set.
Or, are you looking for managing C++ header files. If that is the
case, the following article should help:
http://www.eventhelix.com/RealtimeMantra/HeaderFileIncludePatterns.htm
Sandeep
--
http://www.EventHelix.com/EventStudio
EventStudio 2.0 - Distributed System Design CASE Tool
.
|
|
|
|
| User: "Mike Spencer" |
|
| Title: Re: Creating C++ Header Files |
23 Nov 2003 10:33:09 AM |
|
|
Nullstyle wrote:
Hi there guys. I need a little advice on how to create C++ header
files using the Borland C++ 5.5.1 compiler. Thanks in advance.
You can try Lazy C++. Write your code in one file (Java style) then
run it though a preparser to create your header and source files.
There's no need to write and maintain duplicate declarations. Lazy
C++ is at http://www.lazycplusplus.com
Mike
--
Lzz: The Lazy C++ Programmer's Tool
http://www.lazycplusplus.com
.
|
|
|
|

|
Related Articles |
|
|