mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
25 lines
353 B
C++
25 lines
353 B
C++
|
//
|
||
|
// AppleII.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 14/04/2018.
|
||
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef AppleII_hpp
|
||
|
#define AppleII_hpp
|
||
|
|
||
|
namespace AppleII {
|
||
|
|
||
|
class Machine {
|
||
|
public:
|
||
|
virtual ~Machine();
|
||
|
|
||
|
/// Creates and returns an AppleII.
|
||
|
static Machine *AppleII();
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* AppleII_hpp */
|