-
Notifications
You must be signed in to change notification settings - Fork 10
/
CollectorMyImpl1.cpp
51 lines (38 loc) · 971 Bytes
/
CollectorMyImpl1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: CollectorMyImpl1.cpp
* Author: cancian
*
* Created on 14 de Agosto de 2018, 19:43
*/
#include "CollectorMyImpl1.h"
CollectorMyImpl1::CollectorMyImpl1() {
}
CollectorMyImpl1::CollectorMyImpl1(const CollectorMyImpl1& orig) {
}
CollectorMyImpl1::~CollectorMyImpl1() {
}
void CollectorMyImpl1::clear() {
}
void CollectorMyImpl1::addValue(double value) {
}
double CollectorMyImpl1::value(unsigned int num) {
}
unsigned int CollectorMyImpl1::numElements() {
}
std::string CollectorMyImpl1::getName() {
return _name;
}
void CollectorMyImpl1::setName(std::string name) {
_name = name;
}
std::string CollectorMyImpl1::getDataFilename() {
return this->_dataFilename;
}
void CollectorMyImpl1::setDataFilename(std::string filename) {
_dataFilename = filename;
}