2019-04-04 16:55:46 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 4/4/2019.
|
|
|
|
* Copyright 2019 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_ENUMVALUESREGISTRY_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_ENUMVALUESREGISTRY_H_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_interfaces_enum_values_registry.h"
|
|
|
|
|
|
|
|
#include <vector>
|
2019-04-26 18:06:44 +02:00
|
|
|
#include <memory>
|
2019-04-04 16:55:46 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
namespace Detail {
|
|
|
|
|
2019-04-25 11:13:11 +02:00
|
|
|
std::unique_ptr<EnumInfo> makeEnumInfo( StringRef enumName, StringRef allValueNames, std::vector<int> const& values );
|
|
|
|
|
2019-04-04 16:55:46 +02:00
|
|
|
class EnumValuesRegistry : public IMutableEnumValuesRegistry {
|
|
|
|
|
2019-04-21 18:56:19 +02:00
|
|
|
std::vector<std::unique_ptr<EnumInfo>> m_enumInfos;
|
2019-04-04 16:55:46 +02:00
|
|
|
|
2019-04-25 11:13:11 +02:00
|
|
|
EnumInfo const& registerEnum( StringRef enumName, StringRef allEnums, std::vector<int> const& values) override;
|
2019-04-04 16:55:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<std::string> parseEnums( StringRef enums );
|
|
|
|
|
|
|
|
} // Detail
|
|
|
|
|
|
|
|
} // Catch
|
|
|
|
|
|
|
|
#endif //TWOBLUECUBES_CATCH_ENUMVALUESREGISTRY_H_INCLUDED
|