mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-24 05:18:36 +00:00
Simplify namespace syntax.
This commit is contained in:
@@ -16,8 +16,7 @@
|
||||
#include "../../../ClockReceiver/ClockReceiver.hpp"
|
||||
#include "../../../ClockReceiver/ClockingHintSource.hpp"
|
||||
|
||||
namespace Storage {
|
||||
namespace Disk {
|
||||
namespace Storage::Disk {
|
||||
|
||||
/*!
|
||||
Provides the shell for emulating a disk controller: something that is connected to a disk drive and uses a
|
||||
@@ -163,7 +162,6 @@ class Controller:
|
||||
void digital_phase_locked_loop_output_bit(int value);
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* DiskDrive_hpp */
|
||||
|
||||
@@ -14,8 +14,7 @@
|
||||
#include "../../../ClockReceiver/ClockReceiver.hpp"
|
||||
#include "../Encodings/MFM/Shifter.hpp"
|
||||
|
||||
namespace Storage {
|
||||
namespace Disk {
|
||||
namespace Storage::Disk {
|
||||
|
||||
/*!
|
||||
Extends Controller with a built-in shift register and FM/MFM decoding logic,
|
||||
@@ -166,7 +165,6 @@ class MFMController: public Controller {
|
||||
CRC::CCITT crc_generator_;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* MFMDiskController_hpp */
|
||||
|
||||
Reference in New Issue
Block a user