Files
LIGGGHTS-PFM/tools/phonon/main.cpp
2014-01-23 20:29:19 +01:00

19 lines
267 B
C++
Executable File

#include "stdio.h"
#include "stdlib.h"
#include "dynmat.h"
#include "phonon.h"
using namespace std;
int main(int argc, char** argv)
{
DynMat *dynmat = new DynMat(argc, argv);
Phonon *phonon = new Phonon(dynmat);
delete phonon;
delete dynmat;
return 0;
}