summaryrefslogtreecommitdiff
path: root/src/lib/font.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-01-13 00:19:41 +0100
committerCarl Hetherington <cth@carlh.net>2020-01-13 00:19:41 +0100
commit9979e28b2511c15982ca8d083947eedf513b14f3 (patch)
tree1775e3c6fabe4b089d864b1389b6e2b38164c51b /src/lib/font.h
parentbbee721034df747169f7d75ef142e57a8a8ed646 (diff)
WIP: partially restore PlayerVideo transfer over network.faster-subtitle-moving
Diffstat (limited to 'src/lib/font.h')
-rw-r--r--src/lib/font.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/font.h b/src/lib/font.h
index 5876bf8a4..f6949e419 100644
--- a/src/lib/font.h
+++ b/src/lib/font.h
@@ -27,6 +27,8 @@
#include <boost/filesystem.hpp>
#include <string>
+class Socket;
+
namespace dcpomatic {
class Font
@@ -37,7 +39,10 @@ public:
explicit Font (cxml::NodePtr node);
- void as_xml (xmlpp::Node* node);
+ void as_xml (xmlpp::Node* node) const;
+
+ void transfer_xml (xmlpp::Node* node) const;
+ void transfer_binary (boost::shared_ptr<Socket> socket) const;
std::string id () const {
return _id;