add an include guard to Stats

This commit is contained in:
Stephen Birarda 2014-04-09 11:35:20 -07:00
parent ced5e72d39
commit 0a9c7e3d74

View file

@ -9,6 +9,9 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef _hifi_Stats_h
#define _hifi_Stats_h
#include <QObject>
#include <NodeList.h>
@ -42,3 +45,5 @@ private:
int _lastHorizontalOffset;
};
#endif