├── .gitignore ├── .james ├── ObjectDebugger screenshot.jpg ├── ObjectDebugger.dpk ├── ObjectDebugger.dproj ├── ObjectDebugger.res ├── ObjectDebuggerForm.dfm ├── ObjectDebuggerForm.pas ├── ObjectDebuggerGroup.groupproj ├── README.md └── Test ├── Project1.dpr ├── Project1.dproj ├── Unit1.dfm └── Unit1.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /.james: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/.james -------------------------------------------------------------------------------- /ObjectDebugger screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebugger screenshot.jpg -------------------------------------------------------------------------------- /ObjectDebugger.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebugger.dpk -------------------------------------------------------------------------------- /ObjectDebugger.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebugger.dproj -------------------------------------------------------------------------------- /ObjectDebugger.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebugger.res -------------------------------------------------------------------------------- /ObjectDebuggerForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebuggerForm.dfm -------------------------------------------------------------------------------- /ObjectDebuggerForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebuggerForm.pas -------------------------------------------------------------------------------- /ObjectDebuggerGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/ObjectDebuggerGroup.groupproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/README.md -------------------------------------------------------------------------------- /Test/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/Test/Project1.dpr -------------------------------------------------------------------------------- /Test/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/Test/Project1.dproj -------------------------------------------------------------------------------- /Test/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/Test/Unit1.dfm -------------------------------------------------------------------------------- /Test/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocantu/ObjectDebugger/HEAD/Test/Unit1.pas --------------------------------------------------------------------------------