2007-12-14 08:51 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rtl/tscalar.prg
    + added APPEND method to array scalar object
This commit is contained in:
Przemyslaw Czerpak
2007-12-14 07:51:42 +00:00
parent 8469a5d29c
commit 0126fb9d19
2 changed files with 20 additions and 14 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-12-14 08:51 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/rtl/tscalar.prg
+ added APPEND method to array scalar object
2007-12-13 16:55 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbapigt.h
* harbour/source/rtl/gtapi.c

View File

@@ -111,23 +111,25 @@ METHOD BecomeErr() CLASS ScalarObject
CREATE CLASS Array INHERIT HBScalar FUNCTION __HBArray
METHOD Init()
METHOD Init
METHOD AsString()
METHOD AsString
METHOD At
METHOD AtPut()
METHOD AtPut
METHOD Add
METHOD AddAll()
METHOD Collect()
METHOD Copy()
METHOD Do()
METHOD DeleteAt()
METHOD InsertAt()
METHOD IndexOf()
METHOD IsScalar()
METHOD Remove()
METHOD Scan()
METHOD _Size() // assignment method
METHOD AddAll
METHOD Collect
METHOD Copy
METHOD Do
METHOD DeleteAt
METHOD InsertAt
METHOD IndexOf
METHOD IsScalar
METHOD Remove
METHOD Scan
METHOD _Size // assignment method
MESSAGE Append METHOD Add
ENDCLASS