summaryrefslogtreecommitdiff
path: root/MuscleEMGProfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MuscleEMGProfile.cpp')
-rw-r--r--MuscleEMGProfile.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/MuscleEMGProfile.cpp b/MuscleEMGProfile.cpp
new file mode 100644
index 0000000..b1b4977
--- /dev/null
+++ b/MuscleEMGProfile.cpp
@@ -0,0 +1,7 @@
+#include "MuscleEMGProfile.h"
+
+void MuscleEMGProfile::addData(double x, double y)
+{
+ _x.push_back(x);
+ _y.push_back(y);
+} \ No newline at end of file