Import Geant4 10.7.0 source tree
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user