lincomentry.h | lincomentry.h | |||
---|---|---|---|---|
// (C) 2008-2010 D. V. Wiebe | // Copyright (C) 2008-2010 D. V. Wiebe | |||
// | // | |||
/////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////// | |||
// | // | |||
// This file is part of the GetData project. | // This file is part of the GetData project. | |||
// | // | |||
// GetData is free software; you can redistribute it and/or modify it under | // GetData is free software; you can redistribute it and/or modify it under | |||
// the terms of the GNU Lesser General Public License as published by the | // the terms of the GNU Lesser General Public License as published by the | |||
// Free Software Foundation; either version 2.1 of the License, or (at your | // Free Software Foundation; either version 2.1 of the License, or (at your | |||
// option) any later version. | // option) any later version. | |||
// | // | |||
skipping to change at line 35 | skipping to change at line 35 | |||
#include <getdata/entry.h> | #include <getdata/entry.h> | |||
namespace GetData { | namespace GetData { | |||
class Dirfile; | class Dirfile; | |||
class LincomEntry : public Entry { | class LincomEntry : public Entry { | |||
friend class Dirfile; | friend class Dirfile; | |||
public: | public: | |||
LincomEntry() : Entry::Entry() { E.field_type = GD_LINCOM_ENTRY; }; | LincomEntry() : Entry() { E.field_type = GD_LINCOM_ENTRY; }; | |||
LincomEntry(const char* field_code, int n_fields, const char** in_fie lds, | LincomEntry(const char* field_code, int n_fields, const char** in_fie lds, | |||
double* m, double* b, int fragment_index = 0); | double* m, double* b, int fragment_index = 0); | |||
LincomEntry(const char* field_code, int n_fields, const char** in_fie lds, | LincomEntry(const char* field_code, int n_fields, const char** in_fie lds, | |||
std::complex<double>* cm, std::complex<double>* cb, | std::complex<double>* cm, std::complex<double>* cb, | |||
int fragment_index = 0); | int fragment_index = 0); | |||
virtual const char *Input(int index = 0) const { | virtual const char *Input(int index = 0) const { | |||
return (CheckIndex(E.field_type, E.u.lincom.n_fields, index)) ? | return (CheckIndex(E.field_type, E.u.lincom.n_fields, index)) ? | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |