#ifndef OPENFPGA_ARCH_H #define OPENFPGA_ARCH_H #include "circuit_library.h" /* namespace openfpga begins */ namespace openfpga { /* A unified data structure to store circuit-level settings, * including circuit library, technology library and simulation parameters */ struct Arch { CircuitLibrary circuit_lib; }; } /* namespace openfpga ends */ #endif