Warning, /include/Geant4/tools/wroot/idir 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_idir
0005 #define tools_wroot_idir
0006
0007 #include "seek"
0008
0009 namespace tools {
0010 namespace wroot {
0011 class ifile;
0012 class iobject;
0013 }}
0014
0015 namespace tools {
0016 namespace wroot {
0017
0018 class idir {
0019 public:
0020 virtual ~idir(){}
0021 public:
0022 virtual ifile& file() = 0;
0023 virtual seek seek_directory() const = 0;
0024 virtual void append_object(iobject*) = 0; //for tree.
0025 };
0026
0027 }}
0028
0029 #endif