diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-07 15:21:19 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-20 10:38:17 +0200 |
| commit | f706bbb9afd10472e81a051cd5db601d6404377c (patch) | |
| tree | e55e0c1c72d71c1eec008f3527757293c942c9b7 /src/lib/release_notes.h | |
| parent | 704bc0f8be05ddca94a3853a6e112f22f8f2df70 (diff) | |
Basic release notes support (#2282).
Diffstat (limited to 'src/lib/release_notes.h')
| -rw-r--r-- | src/lib/release_notes.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/lib/release_notes.h b/src/lib/release_notes.h new file mode 100644 index 000000000..36f66d257 --- /dev/null +++ b/src/lib/release_notes.h @@ -0,0 +1,26 @@ +/* + Copyright (C) 2022 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + + +#include <boost/optional.hpp> +#include <string> + + +extern boost::optional<std::string> find_release_notes(); |
