Initial commit
This commit is contained in:
12
src/amscpptemplate25a/amscpptemplate25a_src2.cpp
Normal file
12
src/amscpptemplate25a/amscpptemplate25a_src2.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include <amscpptemplate25a/amscpptemplate25a.hpp>
|
||||
|
||||
namespace ams
|
||||
{
|
||||
|
||||
void amscpptemplate_testfn2()
|
||||
{
|
||||
printf("Test function 2.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
};
|
12
src/amscpptemplate25a/amscpptemplate25a_template.cpp
Normal file
12
src/amscpptemplate25a/amscpptemplate25a_template.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include <amscpptemplate25a/amscpptemplate25a.hpp>
|
||||
|
||||
namespace ams
|
||||
{
|
||||
|
||||
void amscpptemplate_testfn()
|
||||
{
|
||||
printf("Test function.\n");
|
||||
return;
|
||||
}
|
||||
|
||||
};
|
9
src/main.cpp
Normal file
9
src/main.cpp
Normal file
@ -0,0 +1,9 @@
|
||||
#include <amscpptemplate25a/amscpptemplate25a.hpp>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int ret = 0;
|
||||
printf("ams c++ project template tests.\n");
|
||||
ams::amscpptemplate_testfn();
|
||||
return ret;
|
||||
}
|
Reference in New Issue
Block a user