コード例 #1
0
 /// Can be constructed with an EAST dms-class
 inline explicit longitude(const dms<east, T>& v)
     : detail::graticule<T>(v.as_value())
 {}
コード例 #2
0
ファイル: graticule.hpp プロジェクト: Jopie64/boost-svn
 /// Can be constructed with a WEST dms-class
 inline explicit longitude(dms<west, T> const& v)
     : detail::graticule<T>(v.as_value())
 {}
コード例 #3
0
  /// Can be constructed with a SOUTH dms-class
  inline explicit latitude(const dms<south,T>& v)
     : detail::graticule<T>(v.as_value())
 {}
コード例 #4
0
ファイル: graticule.hpp プロジェクト: Jopie64/boost-svn
 /// Can be constructed with a NORTH dms-class
 inline explicit latitude(dms<north,T> const& v)
     : detail::graticule<T>(v.as_value())
 {}