mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
27 lines
384 B
C++
27 lines
384 B
C++
//
|
|
// StandardOptions.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 20/11/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef StandardOptions_hpp
|
|
#define StandardOptions_hpp
|
|
|
|
#include "../Reflection/Enum.h"
|
|
|
|
namespace Configurable {
|
|
|
|
ReflectableEnum(Display,
|
|
RGB,
|
|
SVideo,
|
|
CompositeColour,
|
|
CompositeMonochrome
|
|
);
|
|
|
|
|
|
}
|
|
|
|
#endif /* StandardOptions_hpp */
|