1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 00:46:37 +02:00

Moved Commands stuff to its own file and changed Command::name to be ci::string - Will be used after hashing system is rewritten

This commit is contained in:
Adam
2010-04-24 17:18:25 -04:00
committed by Adam
parent 2ba89de64d
commit fa82890696
7 changed files with 135 additions and 125 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
#include "services.h"
#include "modules.h"
Command::Command(const std::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission)
Command::Command(const ci::string &sname, size_t min_params, size_t max_params, const std::string &spermission) : MaxParams(max_params), MinParams(min_params), name(sname), permission(spermission)
{
this->core = 0;
this->mod_name = NULL;