LatticeYangMills
jsonapp.h
1 #pragma once
2 #include "InputOutput/JsonInput/json.hpp"
3 #include "Apps/app.h"
4 
5 namespace LatticeIO {
6  namespace JsonInput {
7  // Validate App
8  void validateAppType();
9  void validatePGFG();
10  void validateGFR();
11  void validateFLOW();
12 
13  // Register App
14  void registerApp(App*& app);
15  void registerGFR(App*& app);
16  void registerPGFG(App*& app);
17  void registerFLOW(App*& app);
18 
19  } // end JsonInput
20 } // end LatticeIO
Contains the definition of the App prototype.
Prototype for the App class group.
Definition: app.h:59