mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Added support for ScriptVariable move
This commit is contained in:
parent
1296918abe
commit
f91d5f9fe9
2 changed files with 56 additions and 24 deletions
|
@ -106,7 +106,8 @@ private:
|
|||
|
||||
public:
|
||||
ScriptVariable();
|
||||
ScriptVariable( const ScriptVariable& variable );
|
||||
ScriptVariable(const ScriptVariable& variable);
|
||||
ScriptVariable(ScriptVariable&& variable);
|
||||
|
||||
~ScriptVariable();
|
||||
|
||||
|
@ -213,7 +214,8 @@ public:
|
|||
|
||||
void complement( void );
|
||||
void minus( void );
|
||||
bool operator=( const ScriptVariable& variable );
|
||||
ScriptVariable& operator=(const ScriptVariable& variable);
|
||||
ScriptVariable& operator=(ScriptVariable&& variable);
|
||||
ScriptVariable &operator[]( ScriptVariable& index );
|
||||
ScriptVariable *operator[]( unsigned index ) const;
|
||||
ScriptVariable *operator*( );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue