summaryrefslogtreecommitdiff
path: root/test/object.cpp
AgeCommit message (Expand)Author
2021-06-25libcamera/base: Move extended base functionalityKieran Bingham
2020-05-16libcamera: Move internal headers to include/libcamera/internal/Laurent Pinchart
2019-08-17test: object: Extend object test to verify parent-child relationshipsLaurent Pinchart
2019-08-17test: Add Object class thread affinity testLaurent Pinchart
ialization tests */ #ifndef __LIBCAMERA_SERIALIZATION_TEST_H__ #define __LIBCAMERA_SERIALIZATION_TEST_H__ #include <libcamera/camera.h> #include <libcamera/camera_manager.h> #include <libcamera/controls.h> #include "camera_test.h" #include "test.h" using namespace libcamera; class SerializationTest : public CameraTest, public Test { public: SerializationTest() : CameraTest("VIMC Sensor B") { } static bool equals(const ControlInfoMap &lhs, const ControlInfoMap &rhs); static bool equals(const ControlList &lhs, const ControlList &rhs); }; #endif /* __LIBCAMERA_SERIALIZATION_TEST_H__ */