13 lines
174 B
C++
13 lines
174 B
C++
|
// langytypes.C
|
||
|
|
||
|
#include <value.H>
|
||
|
|
||
|
Value& Value::operator=(const Value& val)
|
||
|
{
|
||
|
v = val.v;
|
||
|
_s = val._s;
|
||
|
strcpy(_buf, val._buf);
|
||
|
_type = val._type;
|
||
|
return *this;
|
||
|
}
|