TranslucentElem.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Elem.hpp"
5 
6 namespace iv
7 {
8 
17 {
18 public:
20 
22  void status( iv::TableDebugView * view );
23 
24  Elem * elem();
25  Elem const * elem() const;
26 
27  // initialization parameters
30 
31  // methods
33  TranslucentElem * translucent( bool val );
34 
35 private:
36  Elem * _elem;
37 };
38 
39 }