2017-11-21 02:55:32 +00:00
|
|
|
//
|
|
|
|
// StandardOptions.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 20/11/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-11-21 02:55:32 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef StandardOptions_hpp
|
|
|
|
#define StandardOptions_hpp
|
|
|
|
|
2020-03-16 03:48:53 +00:00
|
|
|
#include "../Reflection/Enum.h"
|
2017-11-21 02:55:32 +00:00
|
|
|
|
|
|
|
namespace Configurable {
|
|
|
|
|
2020-03-16 03:48:53 +00:00
|
|
|
ReflectableEnum(Display,
|
2017-11-21 02:55:32 +00:00
|
|
|
RGB,
|
2018-04-01 02:14:34 +00:00
|
|
|
SVideo,
|
2018-11-29 01:53:33 +00:00
|
|
|
CompositeColour,
|
|
|
|
CompositeMonochrome
|
2020-03-16 03:48:53 +00:00
|
|
|
);
|
2019-09-19 23:41:43 +00:00
|
|
|
|
|
|
|
|
2017-11-21 02:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* StandardOptions_hpp */
|