Create package

This commit is contained in:
2022-11-27 00:56:14 +01:00
parent a27f182090
commit 6f4c650af9
20 changed files with 310 additions and 4 deletions

15
prueba/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