11 lines
133 B
C++
11 lines
133 B
C++
#ifndef FEATURE_H
|
|
#define FEATURE_H
|
|
#include <string>
|
|
|
|
struct Feature {
|
|
std::string name;
|
|
int value;
|
|
};
|
|
|
|
#endif // FEATURE_H
|