commit 2025-10-19 13:13 edit a bit in ZCppMain/ZMainHead.H
This commit is contained in:
@ -4329,6 +4329,12 @@ namespace ZNsMain
|
||||
TypeData & GetData () {return this->TypeLink::GetData();}
|
||||
TypeDataC& GetData () const{return this->TypeLink::GetData();}
|
||||
|
||||
TypeLink & GetHead () {return *mp_HeadLink;}
|
||||
TypeLink & GetTail () {return *mp_TailLink;}
|
||||
|
||||
TypeLinkC& GetHead () const{return *mp_HeadLink;}
|
||||
TypeLinkC& GetTail () const{return *mp_TailLink;}
|
||||
|
||||
|
||||
TypeThis& operator=(TypeThisC& rhs)
|
||||
{ this->GetData() = rhs.GetData(); return *this; }
|
||||
@ -4340,13 +4346,6 @@ namespace ZNsMain
|
||||
{ this->GetData() = rhs ; return *this; }
|
||||
|
||||
|
||||
TypeLink & GetHead() {return *mp_HeadLink;}
|
||||
TypeLink & GetTail() {return *mp_TailLink;}
|
||||
|
||||
TypeLinkC& GetHead() const{return *mp_HeadLink;}
|
||||
TypeLinkC& GetTail() const{return *mp_TailLink;}
|
||||
|
||||
|
||||
TypeLink& AddTail()
|
||||
{
|
||||
TypeLink* VP_NewLink = new TypeLink;
|
||||
|
Reference in New Issue
Block a user