diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-02 17:50:58 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-02 17:50:58 (GMT) |
commit | b545a4bb032255e413f45d2be06a7ed13483597a (patch) | |
tree | 8a8753cdb3bfad7a5c39de52530871d31bbde58e /c++/src/H5Attribute.h | |
parent | 6e7877db5e4f05e8f64dda968eb4c69d0d83d599 (diff) | |
download | hdf5-b545a4bb032255e413f45d2be06a7ed13483597a.zip hdf5-b545a4bb032255e413f45d2be06a7ed13483597a.tar.gz hdf5-b545a4bb032255e413f45d2be06a7ed13483597a.tar.bz2 |
[svn-r3534] Purpose:
Bug Fix
Description:
Added comments to the top of C++ files to indicate that it's a C++
file and not a C source code file. Also added a macro which makes
emacs automagically enter c++-mode. (Recommended by Frank Schimmel
fschimme@monsoon.CAPS.ou.edu)
Diffstat (limited to 'c++/src/H5Attribute.h')
-rw-r--r-- | c++/src/H5Attribute.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/c++/src/H5Attribute.h b/c++/src/H5Attribute.h index 142a829..4a06d3f 100644 --- a/c++/src/H5Attribute.h +++ b/c++/src/H5Attribute.h @@ -1,5 +1,6 @@ -#ifndef _H5Attribute_H -#define _H5Attribute_H +// This may look like C code, but it is really -*- C++ -*- +#ifndef H5Attribute_H_ +#define H5Attribute_H_ #ifndef H5_NO_NAMESPACE namespace H5 { |