From 0cbe0bd266875ccc811b1f4a6687f2a9450fdfb7 Mon Sep 17 00:00:00 2001 From: sabrina-shanman Date: Thu, 8 Nov 2018 13:36:57 -0800 Subject: [PATCH] Add missing copyright comment and header guard to OBJSerializer.h --- libraries/fbx/src/OBJSerializer.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/libraries/fbx/src/OBJSerializer.h b/libraries/fbx/src/OBJSerializer.h index ccb97c02ff..824110c345 100644 --- a/libraries/fbx/src/OBJSerializer.h +++ b/libraries/fbx/src/OBJSerializer.h @@ -1,3 +1,16 @@ +// +// OBJSerializer.h +// libraries/fbx/src/ +// +// Created by Seth Alves on 3/6/15. +// Copyright 2015 High Fidelity, Inc. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// + +#ifndef hifi_OBJSerializer_h +#define hifi_OBJSerializer_h #include #include @@ -106,3 +119,5 @@ private: // What are these utilities doing here? One is used by fbx loading code in VHACD Utils, and the other a general debugging utility. void setMeshPartDefaults(HFMMeshPart& meshPart, QString materialID); void hfmDebugDump(const HFMModel& hfmModel); + +#endif // hifi_OBJSerializer_h