summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/spl.cc2
-rw-r--r--src/lib/spl.h5
2 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/spl.cc b/src/lib/spl.cc
index 544706694..74538aa99 100644
--- a/src/lib/spl.cc
+++ b/src/lib/spl.cc
@@ -23,7 +23,9 @@
#include <libcxml/cxml.h>
#include <libxml++/libxml++.h>
#include <boost/foreach.hpp>
+#include <iostream>
+using std::cout;
using boost::shared_ptr;
bool
diff --git a/src/lib/spl.h b/src/lib/spl.h
index b93a93041..a0b754f04 100644
--- a/src/lib/spl.h
+++ b/src/lib/spl.h
@@ -18,6 +18,9 @@
*/
+#ifndef DCPOMATIC_SPL_H
+#define DCPOMATIC_SPL_H
+
#include "spl_entry.h"
class ContentStore;
@@ -56,3 +59,5 @@ private:
std::string _name;
std::vector<SPLEntry> _spl;
};
+
+#endif