name storing system, implementation (2/2)
[quarnos.git] / manes / implementation.h
blob92f6ccff263d3f24911ee7a22a4bc54f76d31391
1 /* Quarn OS
3 * Implementation class
5 * Copyright (C) 2008 Pawel Dziepak
8 */
10 #ifndef _IMPLEMENTATION_H_
11 #define _IMPLEMENTATION_H_
13 namespace manes {
14 class implementation {
15 protected:
16 component *owner;
18 public:
19 void set_owner(component*);
23 #endif