├── .gitignore ├── Documents ├── classEventedThread.md ├── classSingleton.md ├── unitGenericBinaryTree.md └── unitXInput.md ├── Examples ├── classEventedThread │ ├── EventedThreadTestbed.dpr │ ├── EventedThreadTestbed.dproj │ ├── formEventedThreadTestbedMain.dfm │ └── formEventedThreadTestbedMain.pas ├── classSingleton │ ├── SingletonTest.dpr │ ├── SingletonTest.dproj │ ├── formSingletonTestbed.dfm │ └── formSingletonTestbed.pas ├── unitGenericBinaryTree │ ├── GenericBinaryTreeTestbed.dpr │ ├── GenericBinaryTreeTestbed.dproj │ ├── formBTreeTestbedMain.dfm │ └── formBTreeTestbedMain.pas └── unitXInput │ ├── XInputTestbed.dpr │ ├── XInputTestbed.dproj │ ├── formXInputTestbedMain.dfm │ └── formXInputTestbedMain.pas ├── LICENSE ├── README.md └── Source ├── classEventedThread.pas ├── classSingleton.pas ├── unitGenericBinaryTree.pas └── unitXInput.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/classEventedThread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Documents/classEventedThread.md -------------------------------------------------------------------------------- /Documents/classSingleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Documents/classSingleton.md -------------------------------------------------------------------------------- /Documents/unitGenericBinaryTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Documents/unitGenericBinaryTree.md -------------------------------------------------------------------------------- /Documents/unitXInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Documents/unitXInput.md -------------------------------------------------------------------------------- /Examples/classEventedThread/EventedThreadTestbed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classEventedThread/EventedThreadTestbed.dpr -------------------------------------------------------------------------------- /Examples/classEventedThread/EventedThreadTestbed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classEventedThread/EventedThreadTestbed.dproj -------------------------------------------------------------------------------- /Examples/classEventedThread/formEventedThreadTestbedMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classEventedThread/formEventedThreadTestbedMain.dfm -------------------------------------------------------------------------------- /Examples/classEventedThread/formEventedThreadTestbedMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classEventedThread/formEventedThreadTestbedMain.pas -------------------------------------------------------------------------------- /Examples/classSingleton/SingletonTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classSingleton/SingletonTest.dpr -------------------------------------------------------------------------------- /Examples/classSingleton/SingletonTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classSingleton/SingletonTest.dproj -------------------------------------------------------------------------------- /Examples/classSingleton/formSingletonTestbed.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classSingleton/formSingletonTestbed.dfm -------------------------------------------------------------------------------- /Examples/classSingleton/formSingletonTestbed.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/classSingleton/formSingletonTestbed.pas -------------------------------------------------------------------------------- /Examples/unitGenericBinaryTree/GenericBinaryTreeTestbed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitGenericBinaryTree/GenericBinaryTreeTestbed.dpr -------------------------------------------------------------------------------- /Examples/unitGenericBinaryTree/GenericBinaryTreeTestbed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitGenericBinaryTree/GenericBinaryTreeTestbed.dproj -------------------------------------------------------------------------------- /Examples/unitGenericBinaryTree/formBTreeTestbedMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitGenericBinaryTree/formBTreeTestbedMain.dfm -------------------------------------------------------------------------------- /Examples/unitGenericBinaryTree/formBTreeTestbedMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitGenericBinaryTree/formBTreeTestbedMain.pas -------------------------------------------------------------------------------- /Examples/unitXInput/XInputTestbed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitXInput/XInputTestbed.dpr -------------------------------------------------------------------------------- /Examples/unitXInput/XInputTestbed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitXInput/XInputTestbed.dproj -------------------------------------------------------------------------------- /Examples/unitXInput/formXInputTestbedMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitXInput/formXInputTestbedMain.dfm -------------------------------------------------------------------------------- /Examples/unitXInput/formXInputTestbedMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Examples/unitXInput/formXInputTestbedMain.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Source/classEventedThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Source/classEventedThread.pas -------------------------------------------------------------------------------- /Source/classSingleton.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Source/classSingleton.pas -------------------------------------------------------------------------------- /Source/unitGenericBinaryTree.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Source/unitGenericBinaryTree.pas -------------------------------------------------------------------------------- /Source/unitXInput.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AthenaOfDelphi/DelphiLibrary/HEAD/Source/unitXInput.pas --------------------------------------------------------------------------------