mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-17 16:35:52 +00:00
15 lines
256 B
C++
15 lines
256 B
C++
#ifndef FIMDLP_H
|
|
#define FIMDLP_H
|
|
#include <vector>
|
|
#include <Python.h>
|
|
namespace FImdlp
|
|
{
|
|
class FImdlp
|
|
{
|
|
public:
|
|
FImdlp();
|
|
~FImdlp();
|
|
std::vector<float> cutPoints(std::vector<int> &, std::vector<int> &);
|
|
};
|
|
}
|
|
#endif |