Add include guards to Rootfinder.hh. #1097

This commit is contained in:
Penn, John M 047828115 2021-01-27 12:42:02 -06:00
parent 8a015b3621
commit 7ce4514f74

View File

@ -1,3 +1,5 @@
#ifndef ROOTFINDER_HH
#define ROOTFINDER_HH
#include <iostream>
typedef enum {
@ -27,3 +29,4 @@ class RootFinder {
SlopeConstraint slope_constraint;
SlopeConstraint f_slope;
};
#endif /* ROOTFINDER_HH */