summaryrefslogtreecommitdiff
path: root/src/lib/raw_convert.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-11 11:07:18 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-12 09:14:05 +0100
commit73654117144c6de0ec4efe39ddc88485df546cc9 (patch)
tree4402a65c2988ba6e678c4cf51f6e2d48cad424e5 /src/lib/raw_convert.cc
parentb1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f (diff)
Move raw_convert into libdcp.
Diffstat (limited to 'src/lib/raw_convert.cc')
-rw-r--r--src/lib/raw_convert.cc44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/lib/raw_convert.cc b/src/lib/raw_convert.cc
deleted file mode 100644
index bbfd4375d..000000000
--- a/src/lib/raw_convert.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- Copyright (C) 2014-2016 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 "raw_convert.h"
-
-using std::string;
-
-template <>
-string
-raw_convert<string, string> (string v, int)
-{
- return v;
-}
-
-template <>
-string
-raw_convert<string, char const *> (char const * v, int)
-{
- return v;
-}
-
-template <>
-string
-raw_convert<string, char*> (char * v, int)
-{
- return v;
-}