├── .gitignore ├── 1.clang-format ├── HwBp.sln ├── HwBpLib ├── inc │ └── HwBpLib.h └── test │ ├── test.cpp │ └── test.vcxproj ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/.gitignore -------------------------------------------------------------------------------- /1.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/1.clang-format -------------------------------------------------------------------------------- /HwBp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/HwBp.sln -------------------------------------------------------------------------------- /HwBpLib/inc/HwBpLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/HwBpLib/inc/HwBpLib.h -------------------------------------------------------------------------------- /HwBpLib/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/HwBpLib/test/test.cpp -------------------------------------------------------------------------------- /HwBpLib/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/HwBpLib/test/test.vcxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biocomp/hw_break/HEAD/README.md --------------------------------------------------------------------------------