mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:37:36 +00:00
AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.
This commit is contained in:
parent
77b9fa89dd
commit
90b1354688
188 changed files with 562 additions and 562 deletions
|
@ -31,14 +31,14 @@ class MBRPartitionTable {
|
|||
AK_MAKE_ETERNAL
|
||||
|
||||
public:
|
||||
MBRPartitionTable(Retained<DiskDevice>&& device);
|
||||
MBRPartitionTable(NonnullRefPtr<DiskDevice>&& device);
|
||||
~MBRPartitionTable();
|
||||
|
||||
bool initialize();
|
||||
RetainPtr<DiskPartition> partition(unsigned index);
|
||||
RefPtr<DiskPartition> partition(unsigned index);
|
||||
|
||||
private:
|
||||
Retained<DiskDevice> m_device;
|
||||
NonnullRefPtr<DiskDevice> m_device;
|
||||
|
||||
ByteBuffer read_header() const;
|
||||
const MBRPartitionHeader& header() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue