Import Geant4 10.7.0 source tree
This commit is contained in:
@@ -10,21 +10,22 @@ namespace tools {
|
||||
namespace sg {
|
||||
|
||||
class win_action : public action {
|
||||
TOOLS_ACTION(win_action,tools::sg::win_action,action)
|
||||
public:
|
||||
win_action(std::ostream& a_out,unsigned int a_ww,unsigned int a_wh)
|
||||
:action(a_out)
|
||||
:parent(a_out)
|
||||
,m_ww(a_ww) //WARNING : we assume that we receive a not zero value.
|
||||
,m_wh(a_wh) //WARNING : we assume that we receive a not zero value.
|
||||
{}
|
||||
virtual ~win_action(){}
|
||||
protected:
|
||||
win_action(const win_action& a_from)
|
||||
:action(a_from)
|
||||
:parent(a_from)
|
||||
,m_ww(a_from.m_ww)
|
||||
,m_wh(a_from.m_wh)
|
||||
{}
|
||||
win_action& operator=(const win_action& a_from){
|
||||
action::operator=(a_from);
|
||||
parent::operator=(a_from);
|
||||
m_ww = a_from.m_ww;
|
||||
m_wh = a_from.m_wh;
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user