summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-08 10:35:32 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-08 10:35:32 +0000
commit8803a19c6901ab3c3ff85c964343f08458e0824e (patch)
treec6e1703bf3fb40cfe2ee5bd9674b5184e2bd4484 /src
parent83591a4390db550a7d1495b9699c62315e2d7710 (diff)
Remove compose.hpp dependency from header.
Diffstat (limited to 'src')
-rw-r--r--src/exceptions.cc33
-rw-r--r--src/exceptions.h8
-rw-r--r--src/wscript1
3 files changed, 35 insertions, 7 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
new file mode 100644
index 00000000..6a32a33f
--- /dev/null
+++ b/src/exceptions.cc
@@ -0,0 +1,33 @@
+/*
+ Copyright (C) 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
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program 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 this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "exceptions.h"
+#include "compose.hpp"
+
+using std::string;
+using namespace libdcp;
+
+FileError::FileError (std::string const & message, boost::filesystem::path filename, int number)
+ : _message (String::compose ("%1 (error %2) (%3)", message, filename.string(), number))
+ , _filename (filename)
+ , _number (number)
+{
+
+}
+
diff --git a/src/exceptions.h b/src/exceptions.h
index 602aa16b..2070dd0f 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -21,7 +21,6 @@
#define LIBDCP_EXCEPTIONS_H
#include <boost/filesystem.hpp>
-#include "compose.hpp"
/** @file src/exceptions.h
* @brief Exceptions thrown by libdcp.
@@ -34,12 +33,7 @@ namespace libdcp
class FileError : public std::exception
{
public:
- FileError (std::string const & message, boost::filesystem::path filename, int number)
- : _message (String::compose ("%1 (error %2) (%3)", message, filename.string(), number))
- , _filename (filename)
- , _number (number)
- {}
-
+ FileError (std::string const & message, boost::filesystem::path filename, int number);
~FileError () throw () {}
/** @return error message */
diff --git a/src/wscript b/src/wscript
index 1d694ec3..cdf3c062 100644
--- a/src/wscript
+++ b/src/wscript
@@ -19,6 +19,7 @@ def build(bld):
cpl.cc
dcp.cc
dcp_time.cc
+ exceptions.cc
gamma_lut.cc
image.cc
kdm.cc