summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2016-03-09 20:51:43 -0500
committerHubert Figuière <hub@figuiere.net>2016-03-09 20:52:31 -0500
commitbc82aba20f56a3dc8e72773c44e38d86f8cc289a (patch)
tree86ccb3fe584710aaf4b840e38d93b3178a2ad3c9 /tools
parentc531894bbd3ceb7bcd71c92eade1df1deb2440b3 (diff)
Move C++ headers to private.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am2
-rw-r--r--tools/ordiag.cpp11
2 files changed, 7 insertions, 6 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index ed306f3..e473365 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -1,6 +1,6 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include @BOOST_CPPFLAGS@
+AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/lib @BOOST_CPPFLAGS@
noinst_PROGRAMS = ordiag
diff --git a/tools/ordiag.cpp b/tools/ordiag.cpp
index 342b662..3294326 100644
--- a/tools/ordiag.cpp
+++ b/tools/ordiag.cpp
@@ -1,7 +1,7 @@
/*
* libopenraw - ordiag.cpp
*
- * Copyright (C) 2007-2015 Hubert Figuiere
+ * Copyright (C) 2007-2016 Hubert Figuiere
* Copyright (C) 2008 Novell, Inc.
*
* This library is free software: you can redistribute it and/or
@@ -33,10 +33,11 @@
#include <boost/lexical_cast.hpp>
#include <libopenraw/libopenraw.h>
-#include <libopenraw++/rawfile.h>
-#include <libopenraw++/thumbnail.h>
-#include <libopenraw++/rawdata.h>
-#include <libopenraw++/metavalue.h>
+
+#include "rawfile.hpp"
+#include "thumbnail.hpp"
+#include "rawdata.hpp"
+#include "metavalue.hpp"
using OpenRaw::RawFile;
using OpenRaw::Thumbnail;