00001 #pragma ident "$Id: ARSimple.hpp 2620 2011-05-26 14:42:13Z yanweignss $" 00002 00008 #ifndef GPSTK_ARSIMPLE_HPP 00009 #define GPSTK_ARSIMPLE_HPP 00010 00011 //============================================================================ 00012 // 00013 // This file is part of GPSTk, the GPS Toolkit. 00014 // 00015 // The GPSTk is free software; you can redistribute it and/or modify 00016 // it under the terms of the GNU Lesser General Public License as published 00017 // by the Free Software Foundation; either version 2.1 of the License, or 00018 // any later version. 00019 // 00020 // The GPSTk is distributed in the hope that it will be useful, 00021 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 // GNU Lesser General Public License for more details. 00024 // 00025 // You should have received a copy of the GNU Lesser General Public 00026 // License along with GPSTk; if not, write to the Free Software Foundation, 00027 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00028 // 00029 // Wei Yan - Chinese Academy of Sciences . 2011 00030 // 00031 //============================================================================ 00032 00033 #include "ARBase.hpp" 00034 00035 namespace gpstk 00036 { 00040 class ARSimple 00041 { 00042 public: 00043 00045 ARSimple(){} 00046 00048 virtual Vector<double> resolveIntegerAmbiguity( 00049 const Vector<double>& ambFloat, 00050 const Matrix<double>& ambCov ) 00051 throw(ARException); 00052 00054 virtual ~ARSimple(){} 00055 00056 protected: 00057 00058 00059 }; // End of class 'ARSimple' 00060 00061 } // End of namespace gpstk 00062 00063 00064 #endif //GPSTK_ARSIMPLE_HPP 00065
1.3.9.1