Newer
Older
/**
* This file serves for testing of various examples, have fun!
*
* @author Michal Kravčenko
* @date 14.6.18 -
*/
#include <iostream>
#include <cstdio>
#include <fstream>
#include <vector>
#include <utility>
#include <algorithm>
#include <assert.h>
#include "4neuro.h"
int main(int argc,
char** argv) {
Martin Beseda
committed
l4n::XYZReader r("/home/martin/Desktop/HE21+T0.xyz");
r.read();
r.print_data();
return 0;
}