| 1 | /* --------------------------------------------------------------------------- |
| 2 | ** This software is in the public domain, furnished "as is", without technical |
| 3 | ** support, and with no warranty, express or implied, as to its usefulness for |
| 4 | ** any purpose. |
| 5 | ** |
| 6 | ** V4l2Access.cpp |
| 7 | ** |
| 8 | ** V4L2 wrapper |
| 9 | ** |
| 10 | ** -------------------------------------------------------------------------*/ |
| 11 | |
| 12 | #include "V4l2Access.h" |
| 13 | |
| 14 | V4l2Access::V4l2Access(V4l2Device* device) : m_device(device) { |
| 15 | } |
| 16 | |
| 17 | V4l2Access::~V4l2Access() { |
| 18 | delete m_device; |
| 19 | } |
| 20 | |
| 21 | |