diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-19 21:08:24 +0100 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-19 21:08:24 +0100 |
commit | c2db825b071974369ab40300210f5ecb933744a6 (patch) | |
tree | 7414d3793d69acac1a399f1bf1c266bd595fc1bc /dxr3sysclock.h | |
parent | b74b93b0d95ef21c4bccbbc8ef53322b4b1565a5 (diff) | |
download | vdr-plugin-dxr3-c2db825b071974369ab40300210f5ecb933744a6.tar.gz vdr-plugin-dxr3-c2db825b071974369ab40300210f5ecb933744a6.tar.bz2 |
make more use of Uncopyable
Diffstat (limited to 'dxr3sysclock.h')
-rw-r--r-- | dxr3sysclock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dxr3sysclock.h b/dxr3sysclock.h index 372117e..71eb247 100644 --- a/dxr3sysclock.h +++ b/dxr3sysclock.h @@ -25,11 +25,11 @@ #include <stdint.h> #include <linux/em8300.h> #include <vdr/thread.h> +#include "Uncopyable.h" // ================================== // work with dxr3's clock -class cDxr3SysClock -{ +class cDxr3SysClock : private Uncopyable { public: cDxr3SysClock(int fd_control, int fd_video, int fd_spu): m_fdcontrol(fd_control), |