25 lines
512 B
Plaintext
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
|