BMA Server Framework
/home/barant/Development/BMA/server_core/ServerCore/BMAProperty.h
1 #ifndef __BMAProperty_h__
2 #define __BMAProperty_h__
3 
4 template <typename T>
5 class BMAProperty {
6 
7 public:
8  virtual T & operator = (const T &f) { return value = f; }
9  virtual operator T const & () const { return value; }
10 
11  protected:
12  T value;
13 
14 };
15 
16 #endif
Definition: BMAProperty.h:5