File: main.cpp

package info (click to toggle)
liggghts 3.0.3%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 106,076 kB
  • ctags: 34,406
  • sloc: cpp: 363,723; python: 21,138; ansic: 9,146; perl: 3,687; sh: 2,841; fortran: 2,802; xml: 788; makefile: 485; objc: 238; lisp: 169; f90: 145; csh: 16; awk: 14
file content (18 lines) | stat: -rwxr-xr-x 267 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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;
}