├── .gitignore ├── Makefile ├── test.cpp └── units.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | *~ 4 | *.o 5 | *.d 6 | /test 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-ou-se/units/HEAD/Makefile -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-ou-se/units/HEAD/test.cpp -------------------------------------------------------------------------------- /units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-ou-se/units/HEAD/units.hpp --------------------------------------------------------------------------------