1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-06 08:57:11 +02:00

Adjust the signal to use the new method of receiving formatted strings.

This commit is contained in:
Sandu Liviu Catalin
2016-11-16 12:32:58 +02:00
parent c040b24d29
commit 10f2ad95ec
2 changed files with 29 additions and 113 deletions

View File

@ -352,7 +352,7 @@ private:
/* --------------------------------------------------------------------------------------------
* Base constructor.
*/
Signal(const CSStr name);
explicit Signal(const CSStr name);
/* --------------------------------------------------------------------------------------------
* Base constructor.
@ -516,22 +516,22 @@ public:
/* --------------------------------------------------------------------------------------------
* Create a free signal without a specific name.
*/
static Object Create();
static Object CreateFree();
/* --------------------------------------------------------------------------------------------
* Create a new signal with the specified name.
*/
static Object Create(String name);
static Object Create(StackStrF & name);
/* --------------------------------------------------------------------------------------------
* Remove the signal with the specified name.
*/
static void Remove(String name);
static void Remove(StackStrF & name);
/* --------------------------------------------------------------------------------------------
* Retrieve the signal with the specified name.
*/
static Object Fetch(String name);
static Object Fetch(StackStrF & name);
};
} // Namespace:: SqMod