blob: 06be66857bbb10daf9a9b82325754244c258d1f1 (
plain)
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
52
53
54
55
|
/*
* QuantizationParameters.h
*
* Created on: 02.04.2011
* Author: sven
*/
#ifndef QUANTIZATIONPARAMETERS_H_
#define QUANTIZATIONPARAMETERS_H_
#ifndef _GLIBCXX_STRING
#include <string>
#endif
class QuantizationParameters
{
public:
private:
std::string mInputFile;
std::string mOutputFile;
int mBits;
public:
int getBits() const
{
return mBits;
}
std::string getInputFile() const
{
return mInputFile;
}
std::string getOutputFile() const
{
return mOutputFile;
}
void setBits(int mBits)
{
this->mBits = mBits;
}
void setInputFile(std::string& mInputFile)
{
this->mInputFile = mInputFile;
}
void setOutputFile(std::string& mOutputFile)
{
this->mOutputFile = mOutputFile;
}
};
#endif /* QUANTIZATIONPARAMETERS_H_ */
|