Import Geant4 9.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:46:55 +02:00
parent 89a9605df1
commit b1eb5424d2
10957 changed files with 888481 additions and 160139 deletions
+29
View File
@@ -0,0 +1,29 @@
// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_wroot_itree
#define tools_wroot_itree
#include "../typedefs"
namespace tools {
namespace wroot {
class idir;
}}
namespace tools {
namespace wroot {
class itree {
public:
virtual ~itree(){}
public:
virtual void add_tot_bytes(uint32) = 0;
virtual void add_zip_bytes(uint32) = 0;
virtual idir& dir() = 0;
virtual const idir& dir() const = 0;
};
}}
#endif