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
@@ -19,6 +19,7 @@ namespace tools {
namespace sg {
class write_action : public action {
TOOLS_ACTION_NO_COPY(write_action,tools::sg::write_action,action)
public:
virtual io::iwbuf& buffer() = 0;
virtual bool beg_node(const node&) = 0;
@@ -28,14 +29,14 @@ public:
virtual unsigned int protocol() const = 0;
public:
write_action(std::ostream& a_out)
:action(a_out){}
:parent(a_out){}
virtual ~write_action(){}
protected:
write_action(const write_action& a_from)
:action(a_from)
:parent(a_from)
{}
write_action& operator=(const write_action& a_from){
action::operator=(a_from);
parent::operator=(a_from);
return *this;
}
};