mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
10 lines
424 B
C++
10 lines
424 B
C++
#ifndef _CtrlProp_CtrlProp_hpp
|
|
#define _CtrlProp_CtrlProp_hpp
|
|
|
|
#include "CtrlProp.h"
|
|
|
|
//type specific maps for the handlers
|
|
template<class T> ArrayMap<String, Gate2<T&, const Value&> >& wpmap() { static ArrayMap<String, Gate2<T&, const Value&> > _; return _; }
|
|
template<class T> ArrayMap<String, Callback2<const T&, Value&> >& rpmap() { static ArrayMap<String, Callback2<const T&, Value&> > _; return _; }
|
|
|
|
#endif
|