LatticeYangMills
jsoninput.h
1 #pragma once
2 #include <iostream>
3 #include <fstream>
4 #include "InputOutput/JsonInput/json.hpp"
5 #include "InputOutput/JsonInput/jsonitems.h"
6 
7 namespace LatticeIO {
8  namespace JsonInput {
9 
10  // JsonFile
11  extern nlohmann::json jsonFile;
12 
13  // Main Functions
14  void parseInput(int argn, char* argv[]);
15  void initApp(class App*&);
16 
17  } // end JsonInput
18 } // end LatticeIO
Prototype for the App class group.
Definition: app.h:59