summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/minus-circle.svg
blob: 80c0de1e169aeec1aa015534e09425ccba2b1166 (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-minus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line></svg>
_ #define __LIBCAMERA_UTILS_H__ #include <memory> #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) namespace libcamera { namespace utils { const char *basename(const char *path); /* C++11 doesn't provide std::make_unique */ template<typename T, typename... Args> std::unique_ptr<T> make_unique(Args&&... args) { return std::unique_ptr<T>(new T(std::forward<Args>(args)...)); } char *secure_getenv(const char *name); } /* namespace utils */ } /* namespace libcamera */ #endif /* __LIBCAMERA_UTILS_H__ */