First commit.

This commit is contained in:
2015-10-15 17:50:22 -04:30
commit 7328307104
27 changed files with 1808 additions and 0 deletions

15
desktop/jni/marker.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "marker.hpp"
namespace nxtar{
/******************************************************************************
* MARKER CLASS METHODS. *
******************************************************************************/
/**
* Clear the points vector associated with this marker.
*/
Marker::~Marker(){
points.clear();
}
}