Nuke old patches

Nudged by: linimon
This commit is contained in:
Bruce M Simpson 2007-09-05 07:19:37 +00:00
parent 08fae1a618
commit 40fafa2006
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198792
3 changed files with 0 additions and 62 deletions

View File

@ -1,18 +0,0 @@
--- apps/ionosphere/VTECMap.hpp.orig Thu Jan 11 21:38:35 2007
+++ apps/ionosphere/VTECMap.hpp Thu Jan 11 21:38:51 2007
@@ -193,13 +193,13 @@
/// Compute the obliquity at a given elevation
/// @param el elevation in degrees
/// @return obliquity factor
- double VTECMap::Obliquity(double el);
+ double Obliquity(double el);
protected:
/// Allocate the grid array and fill it.
/// @param refStation reference station
/// @param factor : 1 for VTEC maps, 2 for MUF maps
- void VTECMap::reallyMakeGrid(Station& refStation, int factor)
+ void reallyMakeGrid(Station& refStation, int factor)
throw(Exception);
/// Compute one grid value, using all the data. Called by ComputeMap.

View File

@ -1,20 +0,0 @@
--- src/EpochClockModel.hpp.orig Thu Jan 11 21:39:06 2007
+++ src/EpochClockModel.hpp Thu Jan 11 21:39:26 2007
@@ -67,7 +67,7 @@
PRNMode mode = ALWAYS)
:ObsClockModel(sigma, elmask, mode){}
- virtual double EpochClockModel::getOffset(const gpstk::DayTime& t) const
+ virtual double getOffset(const gpstk::DayTime& t) const
throw(gpstk::InvalidArgumentException)
{
if (t!=time)
@@ -92,7 +92,7 @@
// An unchecked accessor for programs that don't need the generic
// interface
- double EpochClockModel::getOffset() const
+ double getOffset() const
throw() {return clkc;};
bool isOffsetValid() const

View File

@ -1,24 +0,0 @@
--- src/MatrixImplementation.hpp.orig Thu Jan 11 21:31:51 2007
+++ src/MatrixImplementation.hpp Thu Jan 11 21:33:18 2007
@@ -37,18 +37,18 @@
//@{
template <class T>
- Matrix<T>::Matrix<T>()
+ Matrix<T>::Matrix()
: v((size_t)0), r(0), c(0), s(0)
{}
template <class T>
- Matrix<T>::Matrix<T>(size_t rows, size_t cols)
+ Matrix<T>::Matrix(size_t rows, size_t cols)
: v(rows * cols), r(rows), c(cols), s(rows * cols)
{}
template <class T>
- Matrix<T>::Matrix<T>(size_t rows, size_t cols,
+ Matrix<T>::Matrix(size_t rows, size_t cols,
T initialValue)
: v(rows * cols, initialValue), r(rows), c(cols), s(rows * cols)
{}