removed const from most apis. it was pointless since there were no actual const pointers.

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40621
This commit is contained in:
David Anderson
2007-03-15 04:34:42 +00:00
parent 0bbb4670fc
commit 043b8f255f
9 changed files with 73 additions and 73 deletions
+3 -3
View File
@@ -146,21 +146,21 @@ namespace SourceMod
*
* @return Forward name.
*/
virtual const char *GetForwardName() const =0;
virtual const char *GetForwardName() =0;
/**
* @brief Returns the number of functions in this forward.
*
* @return Number of functions in forward.
*/
virtual unsigned int GetFunctionCount() const =0;
virtual unsigned int GetFunctionCount() =0;
/**
* @brief Returns the method of multi-calling this forward has.
*
* @return ExecType of the forward.
*/
virtual ExecType GetExecType() const =0;
virtual ExecType GetExecType() =0;
/**
* @brief Executes the forward.