From 6232d13f5321b87ddf12a1aa36b4545da45f173d Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Wed, 17 Nov 2021 22:34:57 +0100 Subject: Travel3: Simple image and video display site Reads the images and videos from filesystem and builds a site in memroy. --- src/video.hh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/video.hh (limited to 'src/video.hh') diff --git a/src/video.hh b/src/video.hh new file mode 100644 index 0000000..26a5c50 --- /dev/null +++ b/src/video.hh @@ -0,0 +1,31 @@ +#ifndef VIDEO_HH +#define VIDEO_HH + +#include "date.hh" +#include "location.hh" + +#include +#include + +class Timezone; + +class Video { +public: + virtual ~Video() = default; + + static std::unique_ptr