diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-10-10 02:58:39 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-10-10 02:58:39 +0300 |
commit | 4e992ec79eb2a4fe760b7faf45e6b24ff54ac705 (patch) | |
tree | caa1806f81dcc0879ce4ab7a170d49fa4a1b31ae /src/fraction.hpp | |
parent | fcd33ce66f3dcea112b41bdc7cee9401f647b3b1 (diff) | |
download | libADLMIDI-4e992ec79eb2a4fe760b7faf45e6b24ff54ac705.tar.gz libADLMIDI-4e992ec79eb2a4fe760b7faf45e6b24ff54ac705.tar.bz2 libADLMIDI-4e992ec79eb2a4fe760b7faf45e6b24ff54ac705.zip |
Added the exact license note into "fraction.hpp" file
The license of this file is in Public Domain:
https://bisqwit.iki.fi/src/index.html
"... and orphan source code files are copyrighted public domain."
Diffstat (limited to 'src/fraction.hpp')
-rw-r--r-- | src/fraction.hpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/fraction.hpp b/src/fraction.hpp index 1c0a38d..892ba25 100644 --- a/src/fraction.hpp +++ b/src/fraction.hpp @@ -1,14 +1,19 @@ +/* + * Fraction number handling. + * Copyright (C) 1992,2001 Bisqwit (http://iki.fi/bisqwit/) + * + * The license of this file is in Public Domain: + * https://bisqwit.iki.fi/src/index.html + * + * "... and orphan source code files are copyrighted public domain." + */ + #ifndef bqw_fraction_h #define bqw_fraction_h #include <cmath> #include <limits> - -/* Fraction number handling. - * Copyright (C) 1992,2001 Bisqwit (http://iki.fi/bisqwit/) - */ - template<typename inttype=int> class fraction { |