Create BoostA2DE base class

This commit is contained in:
2024-05-15 11:53:17 +02:00
parent ef3c74633c
commit 1f236a70db
7 changed files with 356 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
#ifndef BOOST_H
#define BOOST_H
const struct {
std::string CFS = "CFS";
std::string FCBF = "FCBF";
std::string IWSS = "IWSS";
}SelectFeatures;
const struct {
std::string ASC = "asc";
std::string DESC = "desc";
std::string RAND = "rand";
}Orders;
#endif