/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2018, Google Inc. * * test.h - libcamera test base class */ #ifndef __TEST_TEST_H__ #define __TEST_TEST_H__ #include enum TestStatus { TestPass = 0, TestFail = -1, TestSkip = 77, }; class Test { public: Test(); virtual ~Test(); int execute(); protected: virtual int init() { return 0; } virtual int run() = 0; virtual void cleanup() {} }; #define TEST_REGISTER(klass) \ int main(int argc, char *argv[]) \ { \ return klass().execute(); \ } #endif /* __TEST_TEST_H__ */ pan='2'>cgit logo index : libcamera/vivid.git
libcamera pipeline handler for VIVIDgit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/folder-plus.svg
blob: 898f2fc98eee81872a6622113a673135dc7c5afc (plain)
1
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-folder-plus"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line></svg>