vega
other_float_manipulator.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace vega {
6  namespace manipulators {
9 
10  public:
11  virtual bool is_valid_for(const VR& vr) const override {
12  return vr == vr::OF;
13  }
14  };
15  }
16 
17  namespace vr {
18  template <>
19  bool manipulator_is_valid_for<manipulators::OtherFloatManipulator>(VR::value_type value);
20  }
21 }
Definition: vr.h:13
uint16_t value_type
Definition: vr.h:29
const VR OF
Definition: vr_constants.h:281
A manipulator class for VR that represent fixed size elements like integers and floating point number...
Definition: fixed_size_element_manipulator.h:20
Definition: age.h:6
virtual bool is_valid_for(const VR &vr) const override
Definition: other_float_manipulator.h:11
Definition: other_float_manipulator.h:7