X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fload_font.h;h=15906ef62ee3e8ebcc15e7cc1f64c1d647351a32;hb=1dc082f3295f64a9fd4a103078a1dbb5121a865d;hp=6319b1de13012e6f8e351b557705dedd2377dc66;hpb=77b0ffe6c50796b8fb132f56394995e0df089713;p=libdcp.git diff --git a/src/load_font.h b/src/load_font.h index 6319b1de..15906ef6 100644 --- a/src/load_font.h +++ b/src/load_font.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington 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,22 +17,19 @@ */ -#include - -namespace cxml { - class Node; -} +#include namespace dcp { - -class LoadFont + +class LoadFont { public: LoadFont () {} - LoadFont (boost::shared_ptr node); - + LoadFont (std::string id_) + : id (id_) + {} + std::string id; - std::string uri; }; }