remove needless virtual inheritance
This commit is contained in:
parent
04effe9a36
commit
9b0953a955
1 changed files with 2 additions and 3 deletions
|
@ -55,13 +55,12 @@ public:
|
||||||
{
|
{
|
||||||
rewind();
|
rewind();
|
||||||
}
|
}
|
||||||
virtual ~markers_point_placement() {}
|
|
||||||
|
|
||||||
/** Start again at first marker.
|
/** Start again at first marker.
|
||||||
* \note Returns the same list of markers only works when they were NOT added
|
* \note Returns the same list of markers only works when they were NOT added
|
||||||
* to the detector.
|
* to the detector.
|
||||||
*/
|
*/
|
||||||
virtual void rewind()
|
void rewind()
|
||||||
{
|
{
|
||||||
locator_.rewind(0);
|
locator_.rewind(0);
|
||||||
done_ = false;
|
done_ = false;
|
||||||
|
@ -75,7 +74,7 @@ public:
|
||||||
* \param ignore_placement Whether to add selected position to detector
|
* \param ignore_placement Whether to add selected position to detector
|
||||||
* \return True if a place is found, false if none is found.
|
* \return True if a place is found, false if none is found.
|
||||||
*/
|
*/
|
||||||
virtual bool get_point(double &x, double &y, double &angle, bool ignore_placement)
|
bool get_point(double &x, double &y, double &angle, bool ignore_placement)
|
||||||
{
|
{
|
||||||
if (done_)
|
if (done_)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue