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 /dxr3syncbuffer.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 'dxr3syncbuffer.h')
-rw-r--r-- | dxr3syncbuffer.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/dxr3syncbuffer.h b/dxr3syncbuffer.h index 1ed7a83..75b19e0 100644 --- a/dxr3syncbuffer.h +++ b/dxr3syncbuffer.h @@ -35,8 +35,7 @@ const uint32_t UNKNOWN_DATA_RATE = 0xFFFFFFFF; const uint32_t UNKNOWN_ASPECT_RATIO = 0xFFFFFFFF; // ================================== -class cFixedLengthFrame -{ +class cFixedLengthFrame : private Uncopyable { public: cFixedLengthFrame(); ~cFixedLengthFrame(); @@ -107,11 +106,6 @@ protected: static uint32_t m_staticAudioChannelCount; static uint32_t m_staticAudioDataRate; - -private: - //cFixedLengthFrame(); // you are not allowed to use this constructor - cFixedLengthFrame(cFixedLengthFrame&); // no copy constructor - }; // ================================== |