Tagged Questions
The class-helpers tag has no wiki summary.
8
votes
2answers
220 views
Access a strict protected property of a Delphi class?
I need to access a strict protected property, because I need to create a validation (based in the value of this property) to avoid a bug. (I don't have the source code of the third party class which ...
7
votes
10answers
518 views
Should Class Helpers be used in developing new code?
Delphi 8 introduced Class Helpers for the purposes of mapping the VCL/RTL to the .NET object hierarchy. They allow injecting methods into an existing class without overriding the the class or ...
4
votes
1answer
415 views
Find all Class Helpers in Delphi at runtime using RTTI?
Does the extended RTTI in Delphi 2010 offer a way to list defined Class and Record Helpers at run time?
As far as I know Delphi does not show a hint or warning when more than one class helper is ...
3
votes
2answers
123 views
How can access the value of a class var using the address of the class and a offset to the variable?
I Need to access a strict private class var value of a class using his instance and a offset to the variable.
so far tried this , check this sample class
type
TFoo=class
strict private class ...
3
votes
3answers
475 views
Class Helper for generic class?
I'm using Delphi 2009. Is it possible to write a class helper for a generic class, i.e. for TQueue . The obvious
TQueueHelper <T> = class helper of TQueue <T>
...
end;
does not work, ...
2
votes
3answers
247 views
How to encapsulate different classes within one class mantaining their unique methods? (multiple inheritance in delphi?)
I'm currently rewriting a free educational digital circuit simulator to add inertiality to its features. My problem is how to dispatch events to original classes adding a pre-elaboration to them. I ...
1
vote
1answer
104 views
Class and class-helpers
I am new to c++ and want to ask about class helpers.
Well, i have a class and i what class helpers to be in other file. For that i should use namespaces but then i cant #include this file multiple ...