g4tools  5.4.0
session.hm
Go to the documentation of this file.
1 // Copyright (C) 2010, Guy Barrand. All rights reserved.
2 // See the file tools.license for terms.
3 
4 #ifndef tools_metal_session_hm
5 #define tools_metal_session_hm
6 
7 #include "../Cocoa/session.hm"
8 
9 namespace tools {
10 namespace metal {
11 
12 class session : public Cocoa::session {
13  typedef Cocoa::session parent;
14 public:
15  session(std::ostream& a_out):parent(a_out){}
16  virtual ~session() {}
17 protected:
18  session(const session& a_from):parent(a_from) {}
19  session& operator=(const session&){return *this;}
20 };
21 
22 }}
23 
24 #endif