Files
geant4/source/externals/g4tools/include/tools/metal/session.hm
T
2021-06-25 16:12:29 +02:00

25 lines
512 B
Plaintext

// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_metal_session_hm
#define tools_metal_session_hm
#include "../Cocoa/session.hm"
namespace tools {
namespace metal {
class session : public Cocoa::session {
typedef Cocoa::session parent;
public:
session(std::ostream& a_out):parent(a_out){}
virtual ~session() {}
protected:
session(const session& a_from):parent(a_from) {}
session& operator=(const session&){return *this;}
};
}}
#endif