
Modifications of the TOOPS class library (after release of version 1.2)
-----------------------------------------------------------------------

10 Jan 95:  toops.h, tsim.cpp:

            Implementation of ToopsNamedObject changed to remove a bug
            in the storage of the class name. Before the change, this
            constructor only stored a pointer to the class name.
            (Manfred Kraess)

10 Jan 95:  tutorial/tut5 ... tut8:

            4 new tutorials added.
            Sorry, the comments in these tutorials are in German language.
            A translation into English may eventually follow. 
            (Andreas Rinkel)

10 Jan 95:  E-Mail address changed

            Please contact toops@ldv.e-technik.tu-muenchen from now on!
            (Manfred Kraess)

18 Jan 95:  tutorial/tut4:
 
            removed a bug in comproc.h, tut4.prj and Makefile
            that disabled the communication channel between 
            producer and consumer process.
            (Manfred Kraess)

02 Apr 95:  replaced include-file <strstream.h> by "strstrea.h"
	    replaced include-files <setjmp.h> and "setjmp.h" by "setjump.h"
	    (changes not documented in code)
            due to problems with Microsoft Visual C and with OS/2
            (Manfred Kraess)

07 Apr 95:  tut4/consumer.h:
            removed "Botschaft *_msg" from class Consumer
            removed "delete _msg" from ~Consumer()
            This prevents a run-time error.
            (Manfred Kraess)

07 Apr 95:  TOOPS ported to Microsoft Visual C 1.5
            (Manfred Kraess)

12 Oct 95:  TOOPS ported to gcc 

            TOOPS now runs under Linux and HP UX 
            (not under SUN OS 4.1.3, so far)
            compiled with gcc (Version 2.5.8)

            Added new lean makefiles for gcc that replace 
            the old automatically generated makefiles from
            HP Softbench.

08 Dec 95:  Removed obsolete Header-File "formula.h" in path
            utility/include

            utility/source/str.cpp (line 652):
            old:   for (i = pos; i <= pos + count; ++i)
            now:   for (i = pos; i <= Len-count; ++i) 

18 Jul 96:  Finished major changes in tutorials and sample
            applications.

            Added documentation for the tutorials and samples
            in path "doc".

            source/timestep.cpp (line 32):
            removed keyword "virtual" from method implementation

            void ToopsProcessLink::unLink(void);
            void ToopsSocketLink::unLink(void);
            void ToopsTimerLink::unLink(void);
            Definition parts of these inline functions moved from
            tprocess.cpp, socket.cpp and timer.cpp to
            tprocess.h, socket.h and timer.h
            due to linker errors

            source/tsim.cpp:
            added include-file "event.h" to avoid a linker error

            source/error.cpp (line 60):
            removed "flush" manipulator from "<<" statement

