Files
geant4/source/externals/g4tools/include/tools/wroot/itree
T
2025-12-05 08:54:02 +01:00

28 lines
399 B
Plaintext

// 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 idir& dir() = 0;
virtual const idir& dir() const = 0;
};
}}
#endif