summaryrefslogtreecommitdiffstats
path: root/src/dal/recordset.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-06 18:39:49 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-06 18:46:49 +0100
commitc0a5b22aa8f90c3d5de4a4b7495cf157d9a189d1 (patch)
treee3982ab486c539a88d0c3eaad37c0fdfaa1b1f8f /src/dal/recordset.h
parent49cd2c5d236294fa99a612dbf4833c72a7f89de8 (diff)
downloadmanaserv-c0a5b22aa8f90c3d5de4a4b7495cf157d9a189d1.tar.gz
manaserv-c0a5b22aa8f90c3d5de4a4b7495cf157d9a189d1.tar.xz
manaserv-c0a5b22aa8f90c3d5de4a4b7495cf157d9a189d1.zip
A host of code style changes
Removed pointless void in method parameter lists, fixed methods and variables that started with upper case, removed pointless 'const' for stuff passed by value, made some getters const, etc.
Diffstat (limited to 'src/dal/recordset.h')
-rw-r--r--src/dal/recordset.h41
1 files changed, 12 insertions, 29 deletions
diff --git a/src/dal/recordset.h b/src/dal/recordset.h
index e236b19..124123d 100644
--- a/src/dal/recordset.h
+++ b/src/dal/recordset.h
@@ -27,7 +27,6 @@
namespace dal
{
-
/**
* Data type for a row in a RecordSet.
*/
@@ -48,50 +47,40 @@ class RecordSet
/**
* Default constructor.
*/
- RecordSet(void)
+ RecordSet()
throw();
-
/**
* Destructor.
*/
- ~RecordSet(void)
+ ~RecordSet()
throw();
-
/**
* Remove all the records.
*/
- void
- clear(void);
-
+ void clear();
/**
* Check if the RecordSet is empty.
*
* @return true if empty.
*/
- bool
- isEmpty(void) const;
-
+ bool isEmpty() const;
/**
* Get the number of rows.
*
* @return the number of rows.
*/
- unsigned int
- rows(void) const;
-
+ unsigned int rows() const;
/**
* Get the number of columns.
*
* @return the number of columns.
*/
- unsigned int
- cols(void) const;
-
+ unsigned int cols() const;
/**
* Set the column headers.
@@ -101,9 +90,7 @@ class RecordSet
* @exception AlreadySetException if the column headers
* are already set.
*/
- void
- setColumnHeaders(const Row& headers);
-
+ void setColumnHeaders(const Row &headers);
/**
* Add a new row.
@@ -118,9 +105,7 @@ class RecordSet
* @exception std::invalid_argument if the number of columns in the
* new row is not equal to the number of column headers.
*/
- void
- add(const Row& row);
-
+ void add(const Row &row);
/**
* Operator()
@@ -156,7 +141,7 @@ class RecordSet
*/
const std::string&
operator()(const unsigned int row,
- const std::string& name) const;
+ const std::string &name) const;
/**
@@ -169,21 +154,19 @@ class RecordSet
* @return the output stream for chaining.
*/
friend std::ostream&
- operator<<(std::ostream& out, const RecordSet& rhs);
-
+ operator<<(std::ostream& out, const RecordSet &rhs);
private:
/**
* Copy constructor.
*/
- RecordSet(const RecordSet& rhs);
-
+ RecordSet(const RecordSet &rhs);
/**
* Assignment operator.
*/
RecordSet&
- operator=(const RecordSet& rhs);
+ operator=(const RecordSet &rhs);
private: