summaryrefslogtreecommitdiff
path: root/include/lists.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-11-22 00:50:33 -0500
committerAdam <Adam@anope.org>2012-11-22 00:50:33 -0500
commitd33a0f75a5c0c584fbb7cc0076da36d494f39494 (patch)
tree7b2274cc833c793c0f5595660cbd4d715de52ffd /include/lists.h
parent368d469631763e9c8bf399980d0ac7c5b5664d39 (diff)
Pretty large coding style cleanup, in source doc
cleanup, and allow protocol mods to depend on each other
Diffstat (limited to 'include/lists.h')
-rw-r--r--include/lists.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/lists.h b/include/lists.h
index 841faf7a9..94d03aa4b 100644
--- a/include/lists.h
+++ b/include/lists.h
@@ -8,7 +8,6 @@
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
- *
*/
#ifndef LISTS_H
@@ -48,9 +47,9 @@ class CoreExport NumberList
void Process();
/** Called with a number from the list
- * @param Number The number
+ * @param number The number
*/
- virtual void HandleNumber(unsigned Number);
+ virtual void HandleNumber(unsigned number);
/** Called when there is an error with the numbered list
* Return false to immediatly stop processing the list and return
@@ -71,9 +70,9 @@ class CoreExport ListFormatter
std::vector<Anope::string> columns;
std::vector<ListEntry> entries;
public:
- ListFormatter &addColumn(const Anope::string &name);
- void addEntry(const ListEntry &entry);
- bool isEmpty() const;
+ ListFormatter &AddColumn(const Anope::string &name);
+ void AddEntry(const ListEntry &entry);
+ bool IsEmpty() const;
void Process(std::vector<Anope::string> &);
};