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,31 @@
#ifndef __AMSCPPPERM1_HPP__
#define __AMSCPPPERM1_HPP__
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
namespace ams
{
namespace perm
{
//Buffer operations
//Permutation class
class permutation
{
public:
int dim;
int *data;
permutation();
~permutation();
};
}; //end namespace perm
}; //end namespace ams
#endif

View File

@ -1,15 +0,0 @@
#ifndef __AMSCPPTEMPLATE25A_HPP__
#define __AMSCPPTEMPLATE25A_HPP__
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
namespace ams
{
void amscpptemplate_testfn();
void amscpptemplate_testfn2();
};
#endif