summaryrefslogtreecommitdiffstats
path: root/c++/src/H5FcreatProp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-23 21:40:27 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-23 21:40:27 (GMT)
commit326030c665c53dfb04491a92ec88e38749bfbeb0 (patch)
tree161d3ee173a6078f171db492ac23765f9314ea3c /c++/src/H5FcreatProp.h
parent816fb3b0fc2043ec04805bc4853d54d2cbfd188f (diff)
downloadhdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.zip
hdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.tar.gz
hdf5-326030c665c53dfb04491a92ec88e38749bfbeb0.tar.bz2
Format changes only.
Platforms tested: Linux/32 2.6 (jam) - very minor
Diffstat (limited to 'c++/src/H5FcreatProp.h')
-rw-r--r--c++/src/H5FcreatProp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/c++/src/H5FcreatProp.h b/c++/src/H5FcreatProp.h
index 02eacbc..f50b4c6 100644
--- a/c++/src/H5FcreatProp.h
+++ b/c++/src/H5FcreatProp.h
@@ -33,34 +33,34 @@ class H5_DLLCPP FileCreatPropList : public PropList {
FileCreatPropList();
// Retrieves version information for various parts of a file.
- void getVersion( unsigned& super, unsigned& freelist, unsigned& stab, unsigned& shhdr ) const;
+ void getVersion(unsigned& super, unsigned& freelist, unsigned& stab, unsigned& shhdr) const;
// Sets the userblock size field of a file creation property list.
- void setUserblock( hsize_t size ) const;
+ void setUserblock(hsize_t size) const;
// Gets the size of a user block in this file creation property list.
hsize_t getUserblock() const;
// Retrieves the size-of address and size quantities stored in a
// file according to this file creation property list.
- void getSizes( size_t& sizeof_addr, size_t& sizeof_size ) const;
+ void getSizes(size_t& sizeof_addr, size_t& sizeof_size) const;
// Sets file size-of addresses and sizes.
- void setSizes( size_t sizeof_addr = 4, size_t sizeof_size = 4 ) const;
+ void setSizes(size_t sizeof_addr = 4, size_t sizeof_size = 4) const;
// Retrieves the size of the symbol table B-tree 1/2 rank and the
// symbol table leaf node 1/2 size.
- void getSymk( unsigned& int_nodes_k, unsigned& leaf_nodes_k ) const;
+ void getSymk(unsigned& int_nodes_k, unsigned& leaf_nodes_k) const;
// Sets the size of parameters used to control the symbol table nodes.
- void setSymk( unsigned int_nodes_k, unsigned leaf_nodes_k ) const;
+ void setSymk(unsigned int_nodes_k, unsigned leaf_nodes_k) const;
// Returns the 1/2 rank of an indexed storage B-tree.
unsigned getIstorek() const;
// Sets the size of parameter used to control the B-trees for
// indexing chunked datasets.
- void setIstorek( unsigned ik ) const;
+ void setIstorek(unsigned ik) const;
///\brief Returns this class name.
virtual H5std_string fromClass () const { return("FileCreatPropList"); }