Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
@@ -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;