svf_jtag: add ifndef ... endif in hpp file to avoid multiple definition

This commit is contained in:
Gwenhael Goavec-Merou 2019-09-28 15:34:44 +02:00
parent ecdde91dff
commit d8d974d871
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
#ifndef SVF_JTAG_HPP
#define SVF_JTAG_HPP
#include <iostream>
#include <vector>
#include <map>
using namespace std;
class SVF_jtag {
@ -58,3 +61,4 @@ class SVF_jtag {
svf_XYR tdr;
svf_XYR tir;
};
#endif