mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-18 01:30:56 +00:00
30 lines
346 B
C++
30 lines
346 B
C++
//
|
|
// CRTTypes.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 08/03/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef CRTTypes_h
|
|
#define CRTTypes_h
|
|
|
|
namespace Outputs {
|
|
namespace CRT {
|
|
|
|
enum class DisplayType {
|
|
PAL50,
|
|
NTSC60
|
|
};
|
|
|
|
enum class VideoSignal {
|
|
RGB,
|
|
SVideo,
|
|
Composite
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* CRTTypes_h */
|