00001 #pragma ident "$Id: XvtStore.hpp 3140 2012-06-18 15:03:02Z susancummins $" 00002 00003 //============================================================================ 00004 // 00005 // This file is part of GPSTk, the GPS Toolkit. 00006 // 00007 // The GPSTk is free software; you can redistribute it and/or modify 00008 // it under the terms of the GNU Lesser General Public License as published 00009 // by the Free Software Foundation; either version 2.1 of the License, or 00010 // any later version. 00011 // 00012 // The GPSTk is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU Lesser General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU Lesser General Public 00018 // License along with GPSTk; if not, write to the Free Software Foundation, 00019 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 00020 // 00021 // Copyright 2004, The University of Texas at Austin 00022 // 00023 //============================================================================ 00024 00025 //============================================================================ 00026 // 00027 //This software developed by Applied Research Laboratories at the University of 00028 //Texas at Austin, under contract to an agency or agencies within the U.S. 00029 //Department of Defense. The U.S. Government retains all rights to use, 00030 //duplicate, distribute, disclose, or release this software. 00031 // 00032 //Pursuant to DoD Directive 523024 00033 // 00034 // DISTRIBUTION STATEMENT A: This software has been approved for public 00035 // release, distribution is unlimited. 00036 // 00037 //============================================================================= 00038 00045 #ifndef GPSTK_XVTSTORE_INCLUDE 00046 #define GPSTK_XVTSTORE_INCLUDE 00047 00048 #include <iostream> 00049 00050 #include "Exception.hpp" 00051 #include "CommonTime.hpp" 00052 #include "Xvt.hpp" 00053 00054 namespace gpstk 00055 { 00058 00062 template <class IndexType> 00063 class XvtStore 00064 { 00065 public: 00066 virtual ~XvtStore() 00067 {} 00068 00077 virtual Xvt getXvt(const IndexType& id, const CommonTime& t) 00078 const throw(InvalidRequest) 00079 = 0; 00080 00085 virtual void dump(std::ostream& s = std::cout, short detail = 0) const throw() 00086 = 0; 00087 00091 virtual void edit(const CommonTime& tmin, 00092 const CommonTime& tmax = CommonTime::END_OF_TIME) throw() 00093 = 0; 00094 00096 virtual void clear(void) throw() 00097 = 0; 00098 00100 virtual TimeSystem getTimeSystem(void) const throw() 00101 = 0; 00102 00107 virtual CommonTime getInitialTime() const throw(InvalidRequest) 00108 = 0; 00109 00114 virtual CommonTime getFinalTime() const throw(InvalidRequest) 00115 = 0; 00116 00118 virtual bool hasVelocity() const throw() 00119 = 0; 00120 00122 virtual bool isPresent(const IndexType& id) const throw() 00123 = 0; 00124 00125 }; // end class XvtStore 00126 00128 00129 } // namespace 00130 00131 #endif // GPSTK_XVTSTORE_INCLUDE
1.3.9.1