├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── sample └── simple_class │ ├── Project1.dpr │ ├── Project1.dproj │ ├── Project1.dproj.local │ ├── Project1.res │ ├── uMainView.dfm │ └── uMainView.pas └── src ├── PerformanceDiagnostics.Interfaces.pas ├── PerformanceDiagnostics.VirtualMethodInterceptor.pas └── PerformanceDiagnostics.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/_config.yml -------------------------------------------------------------------------------- /sample/simple_class/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/Project1.dpr -------------------------------------------------------------------------------- /sample/simple_class/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/Project1.dproj -------------------------------------------------------------------------------- /sample/simple_class/Project1.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/Project1.dproj.local -------------------------------------------------------------------------------- /sample/simple_class/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/Project1.res -------------------------------------------------------------------------------- /sample/simple_class/uMainView.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/uMainView.dfm -------------------------------------------------------------------------------- /sample/simple_class/uMainView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/sample/simple_class/uMainView.pas -------------------------------------------------------------------------------- /src/PerformanceDiagnostics.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/src/PerformanceDiagnostics.Interfaces.pas -------------------------------------------------------------------------------- /src/PerformanceDiagnostics.VirtualMethodInterceptor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/src/PerformanceDiagnostics.VirtualMethodInterceptor.pas -------------------------------------------------------------------------------- /src/PerformanceDiagnostics.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EduardoGrtt/PerformanceDiagnostics4Delphi/HEAD/src/PerformanceDiagnostics.pas --------------------------------------------------------------------------------