16 lines
414 B
C++
16 lines
414 B
C++
|
|
#include "marker.hpp"
|
||
|
|
|
||
|
|
namespace nxtar{
|
||
|
|
|
||
|
|
/******************************************************************************
|
||
|
|
* MARKER CLASS METHODS. *
|
||
|
|
******************************************************************************/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Clear the points vector associated with this marker.
|
||
|
|
*/
|
||
|
|
Marker::~Marker(){
|
||
|
|
points.clear();
|
||
|
|
}
|
||
|
|
}
|