473,385 Members | 1,901 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

.hpp

Hi,

I have never used .hpp for header file. I came across '.hpp' in a
certain set of code.
I searched the net, but it has been stated that we can use
either .h/.hpp for header files.
Is there any reason behind using '.hpp' ?
What could be the advantage of using '.hpp' extension over '.h'
extension ?

Thx,
Karthik Balaguru

Sep 18 '07 #1
6 2267
karthikbalaguru wrote:
Hi,

I have never used .hpp for header file. I came across '.hpp' in a
certain set of code.
I searched the net, but it has been stated that we can use
either .h/.hpp for header files.
You can use what ever you like...
Is there any reason behind using '.hpp' ?
What could be the advantage of using '.hpp' extension over '.h'
extension ?
Possibly to differentiate C++ headers from C ones.

--
Ian Collins.
Sep 18 '07 #2
"karthikbalaguru" <ka***************@gmail.comwrote in message
news:11**********************@22g2000hsm.googlegro ups.com...
Hi,

I have never used .hpp for header file. I came across '.hpp' in a
certain set of code.
I searched the net, but it has been stated that we can use
either .h/.hpp for header files.
Is there any reason behind using '.hpp' ?
What could be the advantage of using '.hpp' extension over '.h'
extension ?
You can name a header file anything you like. MyFile.blah is just as
"legal" as MyFile.h or MyFile.hpp Even MyFile. with no extention is legal
(such as #include <stringwhich is string. no extention. Some
compilers/people may prefer to give c++ header files a .hpp extention to
differentiate them beteeen C headers. Some IDEs and such may not recognize
any type other than .h or .hpp but the include statement will still be
executed correctly.
Sep 18 '07 #3
On Sep 18, 11:33 am, karthikbalaguru <karthikbalagur...@gmail.com>
wrote:
Hi,

I have never used .hpp for header file. I came across '.hpp' in a
certain set of code.
I searched the net, but it has been stated that we can use
either .h/.hpp for header files.
Is there any reason behind using '.hpp' ?
What could be the advantage of using '.hpp' extension over '.h'
extension ?

Thx,
Karthik Balaguru
Hi Karthik
The use of differnet extensions for header file and even source file
is dependent to implementation and programming environment. For
example in Visual C++ and .NET environemts the convention is .h for
headers and .cpp for sources. In older versions of UNIX environment,
compilers used .C (capital c) or .CC for sources and .h for headers.
Newer compilers like GCC supports vast extensions
like .h, .hpp, .C, .CXX (it is + with 45 degrees rotation), .C++. I
personally use (.h/.C++).
And finally, I think from point of Standard C++ view, there is no
advantage using one extension over another one.

Regards,
Saeed

Sep 18 '07 #4
karthikbalaguru wrote:
What could be the advantage of using '.hpp' extension over '.h'
extension ?
If you see a file with the extension '.h' you can't know if it's a
C header or a C++ header without looking at its contents (and even then
it might not be immediately obvious). You obviously can't use a C++
header in a C program, although in a few cases the opposite is true too.

More importantly, editor programs which support, for example, syntax
highlighting cannot know if it's a C or a C++ file without complex
deductions from the file contents. I assume that most such editors
simply always assume that it's one or the other, getting it wrong
sometimes, thus giving you wrong syntax highlighting.

Why use a confusing naming convention when you can use a clearer one?
What would be the advantage of using '.h' for C++ headers, given that
they can be easily confused with C headers?
Sep 18 '07 #5
karthikbalaguru wrote:
I have never used .hpp for header file. I came across '.hpp' in a
certain set of code.
I searched the net, but it has been stated that we can use
either .h/.hpp for header files.
Is there any reason behind using '.hpp' ?
It's the exact same reason why the C++ source files frequently sport
the ".cpp" extension.

What could be the advantage of using '.hpp' extension over '.h'
extension ?
I've used those extensions, along with ".c++" and ".h++". I've also seen
projects which adopted the ".cxx" and ".hxx" extensions.

To me, the single advantage is that just by looking at the file name it is
automatically possible to know that the code it contains is C or C++. That
is particularly useful if a project handles both C and C++ modules.

On the other hand, there are quite a few artificial disadvantages. There are
quite a few IDEs and other software that, although were written to handle
C++ programming, do not accept anything beyond the popular ".h" and ".cpp"
extensions or even breaking miserably if they stumble on some other
extension.
Rui Maciel
Sep 18 '07 #6
On 2007-09-19 04:50:15 -0400, James Kanze <ja*********@gmail.comsaid:
>
The problem is precisely that the convention (established by the
creator of the language) was .C. When different people ported
to systems which didn't have case sensitive filenames, they had
to create a new convention. The most common to begin with seem
to have been .cc and .cxx, but Microsoft (and maybe Borland
before them) adopted .cpp, so that rapidly became the most
common under Windows. All three are acceptable to all modern
compilers I know.
Yes, Borland used .cpp. That's where Microsoft got it from.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Sep 19 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.