g4tools  5.4.0
Public Member Functions | Public Attributes | List of all members
tools::zb::buffer::writer Class Referenceabstract
Inheritance diagram for tools::zb::buffer::writer:
Inheritance graph
[legend]

Public Member Functions

virtual void write (ZPos, ZPos, ZZ)=0
 
 writer (ZPixel a_pixel)
 
virtual ~writer ()
 
 writer (const writer &a_from)
 
writeroperator= (const writer &a_from)
 

Public Attributes

ZPixel m_pixel
 

Detailed Description

Definition at line 26 of file buffer.

Constructor & Destructor Documentation

◆ writer() [1/2]

tools::zb::buffer::writer::writer ( ZPixel  a_pixel)
inline

Definition at line 30 of file buffer.

30 :m_pixel(a_pixel){}

◆ ~writer()

virtual tools::zb::buffer::writer::~writer ( )
inlinevirtual

Definition at line 31 of file buffer.

31 {}

◆ writer() [2/2]

tools::zb::buffer::writer::writer ( const writer a_from)
inline

Definition at line 33 of file buffer.

33 :m_pixel(a_from.m_pixel){}

Member Function Documentation

◆ operator=()

writer& tools::zb::buffer::writer::operator= ( const writer a_from)
inline

Definition at line 34 of file buffer.

34  {
35  m_pixel = a_from.m_pixel;
36  return *this;
37  }

◆ write()

virtual void tools::zb::buffer::writer::write ( ZPos  ,
ZPos  ,
ZZ   
)
pure virtual

Member Data Documentation

◆ m_pixel

ZPixel tools::zb::buffer::writer::m_pixel

Definition at line 39 of file buffer.


The documentation for this class was generated from the following file:
tools::zb::buffer::writer::m_pixel
ZPixel m_pixel
Definition: buffer:39