コード例 #1
0
ファイル: CivilTime.hpp プロジェクト: galileo73/GPSTK
    /**
     * Alternate Copy Constructor.
     * Takes a const TimeTag reference and copies its contents via 
     * conversion to CommonTime.
     * @param right a const reference to the TimeTag-based object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 CivilTime( const TimeTag& right )
    throw()
 {
    convertFromCommonTime( right.convertToCommonTime() ); 
 }
コード例 #2
0
ファイル: WeekSecond.hpp プロジェクト: etschneider/GPSTk
    /**
     * Alternate Copy Constructor.
     * Takes a const CommonTime reference and copies its contents via
     * the convertFromCommonTime method.
     * @param right a const reference to the CommonTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 WeekSecond( const CommonTime& right )
 {
    convertFromCommonTime( right );
 }
コード例 #3
0
ファイル: CivilTime.hpp プロジェクト: galileo73/GPSTK
    /** 
     * Alternate Copy Constructor.
     * Takes a const CommonTime reference and copies its contents via
     * the convertFromCommonTime method.
     * @param right a const reference to the CommonTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 CivilTime( const CommonTime& right )
    throw()
 {
    convertFromCommonTime( right );
 }
コード例 #4
0
ファイル: WeekSecond.hpp プロジェクト: etschneider/GPSTk
    /**
     * Alternate Copy Constructor.
     * Takes a const TimeTag reference and copies its contents via
     * conversion to CommonTime.
     * @param right a const reference to the BasicTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 WeekSecond( const TimeTag& right )
 {
    convertFromCommonTime( right.convertToCommonTime() );
 }
コード例 #5
0
ファイル: MJD.hpp プロジェクト: etschneider/GPSTk
    /**
     * Alternate Copy Constructor.
     * Takes a const CommonTime reference and copies its contents via
     * the convertFromCommonTime method.
     * @param right a const reference to the CommonTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 MJD( const CommonTime& right )
 {
    convertFromCommonTime( right );
 }
コード例 #6
0
ファイル: ANSITime.hpp プロジェクト: REC-SPb-ETU/GPSTk
    /**
     * Alternate Copy Constructor.
     * Takes a const TimeTag reference and copies its contents via
     * conversion to CommonTime.
     * @param right a const reference to the BasicTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 ANSITime( const TimeTag& right )
 {
    convertFromCommonTime( right.convertToCommonTime() );
 }
コード例 #7
0
ファイル: CivilTime.hpp プロジェクト: loongfee/ossim-svn
    /**
     * Alternate Copy Constructor.
     * Takes a const TimeTag reference and copies its contents via 
     * conversion to CommonTime.
     * @param right a const reference to the TimeTag-based object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 CivilTime( const TimeTag& right )
    throw( InvalidRequest )
 {
    convertFromCommonTime( right.convertToCommonTime() ); 
 }
コード例 #8
0
ファイル: MJD.hpp プロジェクト: loongfee/ossim-svn
    /**
     * Alternate Copy Constructor.
     * Takes a const TimeTag reference and copies its contents via
     * conversion to CommonTime.
     * @param right a const reference to the BasicTime object to copy
     * @throw InvalidRequest on over-/under-flow
     */
 MJD( const TimeTag& right )
    throw( gpstk::InvalidRequest )
 { 
    convertFromCommonTime( right.convertToCommonTime() ); 
 }