This commit is contained in:
2025-05-06 21:33:52 -04:00
parent 3c1f8626fd
commit 41a3fbcdea
35 changed files with 103 additions and 63 deletions

View File

@ -0,0 +1,9 @@
#include <amscppperm1/amscppperm1.hpp>
namespace ams
{
namespace perm
{
}; //end namespace perm
}; //end namespace ams

View File

@ -0,0 +1,25 @@
#include <amscppperm1/amscppperm1.hpp>
namespace ams
{
namespace perm
{
permutation::permutation()
{
dim = 0;
data = NULL;
return;
}
permutation::~permutation()
{
if(data!=NULL) {delete[] data; data = NULL;}
dim = 0;
return;
}
}; //end namespace perm
}; //end namespace ams

View File

@ -1,12 +0,0 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
namespace ams
{
void amscpptemplate_testfn2()
{
printf("Test function 2.\n");
return;
}
};

View File

@ -1,12 +0,0 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
namespace ams
{
void amscpptemplate_testfn()
{
printf("Test function.\n");
return;
}
};

View File

@ -1,9 +1,9 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
#include <amscppperm1/amscppperm1.hpp>
int main(int argc, char* argv[])
{
int ret = 0;
printf("ams c++ project template tests.\n");
ams::amscpptemplate_testfn();
return ret;
}