Import Geant4 10.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 12:08:39 +02:00
parent 286caacf06
commit c9b32a6c0a
5770 changed files with 1050949 additions and 367105 deletions
@@ -0,0 +1,34 @@
// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_rroot_iro
#define tools_rroot_iro
#include <string>
namespace tools {
namespace rroot {
class buffer;
}}
#include "../cid"
namespace tools {
namespace rroot {
class iro {
public:
virtual ~iro(){}
public:
virtual void* cast(const std::string&) const = 0; //for ObjArray
virtual bool stream(buffer&) = 0;
virtual const std::string& s_cls() const = 0;
virtual iro* copy() const = 0;
virtual void* cast(cid) const = 0; //OPTIMIZATION (geo).
};
}}
#endif