Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/Geant4/tools/wroot/itree is written in an unsupported language. File is not indexed.

0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003 
0004 #ifndef tools_wroot_itree
0005 #define tools_wroot_itree
0006 
0007 #include "../typedefs"
0008 
0009 namespace tools {
0010 namespace wroot {
0011   class idir;
0012 }}
0013 
0014 namespace tools {
0015 namespace wroot {
0016 
0017 class itree {
0018 public:
0019   virtual ~itree(){}
0020 public:
0021   virtual idir& dir() = 0;
0022   virtual const idir& dir() const = 0;
0023 };
0024 
0025 }}
0026 
0027 #endif