├── .gitignore ├── LICENSE ├── README.md ├── melatonin ├── ranges.h └── strings.h ├── melatonin_parameters.cpp ├── melatonin_parameters.h └── tests ├── ranges.cpp └── strings.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/README.md -------------------------------------------------------------------------------- /melatonin/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/melatonin/ranges.h -------------------------------------------------------------------------------- /melatonin/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/melatonin/strings.h -------------------------------------------------------------------------------- /melatonin_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/melatonin_parameters.cpp -------------------------------------------------------------------------------- /melatonin_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/melatonin_parameters.h -------------------------------------------------------------------------------- /tests/ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/tests/ranges.cpp -------------------------------------------------------------------------------- /tests/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudara/melatonin_parameters/HEAD/tests/strings.cpp --------------------------------------------------------------------------------