Patch level :

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@19539 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2009-10-28 16:05:13 +00:00
parent 0956622dec
commit 90a8784d3b

View File

@ -51,6 +51,7 @@ public:
TVariant& operator=(const TString& str) { set(str); return *this; }
TVariant& operator=(const real& r) { set(r); return *this; }
TVariant& operator=(const long n) { set(n); return *this; }
TVariant& operator=(const int i) { set(i); return *this; }
TVariant& operator=(const TDate& d) { set(d); return *this; }
TVariant& operator=(bool b) { set(b); return *this; }
TVariant& operator+=(const TVariant& var) { return add(var); }