Tuesday 15th November at 6 for 6:15pm start
The Perth Delphi user group are meeting this Tuesday at Artifactory 8/16 Guthrie St, Osborne Park WA 6017
Map
- Scott van der Linden – More Mind Your Language by Pawel Glowacki with more info from Scott.
The Perth Delphi user group are meeting this Tuesday at Artifactory 8/16 Guthrie St, Osborne Park WA 6017
Map
Smart pointers have a few uses, the most common being for memory management, providing a way of automatically managing the lifetime of an object in non garbage collected languages. In Delphi this is similar to what you get with reference counted interfaces but a smart pointer implementation does this in a generic way such that all objects can be managed without having to change the existing class (no need to implement interfaces or descend from TInterfacedObject).… Continue reading ›
Another back-to-basics presentation. Traditionally, Interfaces have been associated with COM programming, but especially with the introduction of the .NET framework we see interfaces popping up all over the place.… Continue reading ›
Richard explained that he has been reviewing open source components available for Delphi. He presented some of his findings then discussion centered on how to best harness the collective knowledge of ADUG members.… Continue reading ›
This session will introduce Object Pascal interfaces (not user interfaces) and provide some practical examples of where they can be used. Examples will include interface usage in the VCL, using interfaces to build an application that be run either as a single exe or a distributed system, code that can be reused in both a web and desktop application, and a technique useful for library type code that gives a class seperate private and public interfaces.… Continue reading ›
Vincent Parrett introduced interfaces in the Object Pascal Language, and move to more advanced topics such as hiding class implementation specifics by exposure of the object through an interfaced reference using the singleton pattern.… Continue reading ›