summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-03-13 23:52:49 +0100
committerCarl Hetherington <cth@carlh.net>2022-03-13 23:52:49 +0100
commit01a94fcee506ea974bda991bffc63c75f83184b0 (patch)
tree409e40e162add7238f82f226baa087af5eeb078b
parent5e1851863503428293f461895af20f7c99cd7332 (diff)
Tidying.
-rw-r--r--src/lib/config.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/lib/config.h b/src/lib/config.h
index 32f9c738f..3277dc153 100644
--- a/src/lib/config.h
+++ b/src/lib/config.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -22,12 +22,14 @@
* @brief Class holding configuration.
*/
+
#ifndef DCPOMATIC_CONFIG_H
#define DCPOMATIC_CONFIG_H
-#include "types.h"
-#include "state.h"
+
#include "audio_mapping.h"
+#include "state.h"
+#include "types.h"
#include <dcp/name_format.h>
#include <dcp/certificate_chain.h>
#include <dcp/encrypted_kdm.h>
@@ -36,13 +38,14 @@
#include <boost/filesystem.hpp>
#include <vector>
+
+class Cinema;
class CinemaSoundProcessor;
class DCPContentType;
-class Ratio;
-class Cinema;
-class Film;
class DKDMGroup;
class DKDMRecipient;
+class Film;
+class Ratio;
extern void save_all_config_as_zip (boost::filesystem::path zip_file);