diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-26 22:40:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-26 22:40:33 +0000 |
| commit | a5fafaa249e3cd45b6c64592991ab1f0e0247e5f (patch) | |
| tree | 62d118eec6c9406d2484ae1735d745dd55eb3c37 /src/kdm.cc | |
| parent | 93096af59d8235235c0caed929b6f72dcf09cdc9 (diff) | |
Comments / tidying up.
Diffstat (limited to 'src/kdm.cc')
| -rw-r--r-- | src/kdm.cc | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,15 +17,10 @@ */ -#include <iomanip> -#include <algorithm> -#include <boost/algorithm/string.hpp> -#include <openssl/rsa.h> -#include <openssl/pem.h> -#include <openssl/err.h> -#include <libcxml/cxml.h> -#include "AS_DCP.h" -#include "KM_util.h" +/** @file src/kdm.cc + * @brief KDM and KDMKey classes. + */ + #include "util.h" #include "kdm.h" #include "compose.hpp" @@ -34,6 +29,15 @@ #include "cpl.h" #include "mxf.h" #include "xml/kdm_smpte.h" +#include "AS_DCP.h" +#include "KM_util.h" +#include <libcxml/cxml.h> +#include <openssl/rsa.h> +#include <openssl/pem.h> +#include <openssl/err.h> +#include <boost/algorithm/string.hpp> +#include <iomanip> +#include <algorithm> using std::list; using std::string; |
