Added const AP_Var access.

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1958 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
james.goppert 2011-05-01 19:29:33 +00:00
parent 6d13081fcf
commit cec995adf7
1 changed files with 6 additions and 0 deletions

View File

@ -675,6 +675,12 @@ public:
return _value;
}
/// Value getter
///
const T& get() const {
return _value;
}
/// Value setter
///
void set(T v) {