1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-15 00:29:07 +00:00
CLK/Machines/AmstradCPC/AmstradCPC.hpp
2018-05-13 15:19:52 -04:00

28 lines
402 B
C++

//
// AmstradCPC.hpp
// Clock Signal
//
// Created by Thomas Harte on 30/07/2017.
// Copyright 2017 Thomas Harte. All rights reserved.
//
#ifndef AmstradCPC_hpp
#define AmstradCPC_hpp
namespace AmstradCPC {
/*!
Models an Amstrad CPC.
*/
class Machine {
public:
virtual ~Machine();
/// Creates and returns an Amstrad CPC.
static Machine *AmstradCPC();
};
}
#endif /* AmstradCPC_hpp */