30 lines
535 B
C++
30 lines
535 B
C++
/*
|
|
Copyright (c) 2012, 2013, 2018
|
|
Artur Meski <meski@ipipan.waw.pl>
|
|
*/
|
|
|
|
#ifndef REACTICS_HH
|
|
#define REACTICS_HH
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <iomanip>
|
|
#include <unistd.h>
|
|
#include <getopt.h>
|
|
#include <string.h>
|
|
#include "rs.hh"
|
|
#include "symrs.hh"
|
|
#include "mc.hh"
|
|
#include "rsin_driver.hh"
|
|
#include "options.hh"
|
|
#include "memtime.hh"
|
|
|
|
#define VERSION "2.0 ALPHA"
|
|
#define AUTHOR "Artur Meski <artur.meski@gmail.com>"
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
void print_help(std::string path_str);
|
|
|
|
#endif
|