/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2020, Google Inc. * * flags.cpp - Flags tests */ #include #include #include "test.h" using namespace libcamera; using namespace std; class FlagsTest : public Test { protected: enum class Option { First = (1 << 0), Second = (1 << 1), Third = (1 << 2), }; using Options = Flags