Initial commit

This commit is contained in:
2022-11-26 20:06:40 +01:00
parent adffe6cca8
commit db19867779
7 changed files with 97 additions and 0 deletions

15
FImdlp.h Normal file
View File

@@ -0,0 +1,15 @@
#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