1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Correct namespace.

This commit is contained in:
Thomas Harte 2021-03-17 22:52:23 -04:00
parent 814c057570
commit 3d1775d853
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,7 @@
#include "../../KeyboardMachine.hpp" #include "../../KeyboardMachine.hpp"
#include "../../Utility/Typer.hpp" #include "../../Utility/Typer.hpp"
namespace Sinclair {
namespace ZX8081 { namespace ZX8081 {
enum Key: uint16_t { enum Key: uint16_t {
@ -44,6 +45,7 @@ class CharacterMapper: public ::Utility::CharacterMapper {
bool is_zx81_; bool is_zx81_;
}; };
}; }
}
#endif /* KeyboardMapper_hpp */ #endif /* KeyboardMapper_hpp */

View File

@ -12,6 +12,7 @@
#include "../../../Outputs/CRT/CRT.hpp" #include "../../../Outputs/CRT/CRT.hpp"
#include "../../../ClockReceiver/ClockReceiver.hpp" #include "../../../ClockReceiver/ClockReceiver.hpp"
namespace Sinclair {
namespace ZX8081 { namespace ZX8081 {
/*! /*!
@ -57,6 +58,7 @@ class Video {
void flush(bool next_sync); void flush(bool next_sync);
}; };
}
} }
#endif /* Video_hpp */ #endif /* Video_hpp */