Changeset 2878


Ignore:
Timestamp:
12/11/13 14:19:15 (10 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: test_sdcal2

Put in Release Notes: No

Module(s): sd

Description: Describe your changes here...

Bug fix on Interpolator class.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Interpolator1D.h

    r2733 r2878  
    3333  // @param[in] y pointer to vertical data.
    3434  // @param[in] n number of data.
    35   void setData(T *x, U *y, unsigned int n);
     35  virtual void setData(T *x, U *y, unsigned int n);
    3636
    3737  // Set horizontal data (x).
    3838  // @param[in] x pointer to horizontal data.
    3939  // @param[in] n number of data.
    40   void setX(T *x, unsigned int n);
     40  virtual void setX(T *x, unsigned int n);
    4141
    4242  // Set vertical data (y).
    4343  // @param[in] y pointer to vertical data.
    4444  // @param[in] n number of data.
    45   void setY(U *y, unsigned int n);
     45  virtual void setY(U *y, unsigned int n);
    4646
    4747  // Reset object.
Note: See TracChangeset for help on using the changeset viewer.