Exemplo n.º 1
0
 /// Can be constructed with an EAST dms-class
 inline explicit longitude(const dms<east, T>& v)
     : detail::graticule<T>(v.as_value())
 {}
Exemplo n.º 2
0
 /// Can be constructed with a WEST dms-class
 inline explicit longitude(dms<west, T> const& v)
     : detail::graticule<T>(v.as_value())
 {}
Exemplo n.º 3
0
  /// Can be constructed with a SOUTH dms-class
  inline explicit latitude(const dms<south,T>& v)
     : detail::graticule<T>(v.as_value())
 {}
Exemplo n.º 4
0
 /// Can be constructed with a NORTH dms-class
 inline explicit latitude(dms<north,T> const& v)
     : detail::graticule<T>(v.as_value())
 {}