Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authormakowalski <makowalski@nvidia.com>2021-03-11 04:15:44 +0300
committermakowalski <makowalski@nvidia.com>2021-03-11 04:15:44 +0300
commit1d045a4f572ca703be227a1545da59e40b5b08dd (patch)
tree0fd166a8e49a9b675962da991cea226102ccc2dc /source
parent2d6769fe920f89bc8c8f447fadbd5fde9ca9dd3f (diff)
USD Import: removed unneeded include guards.
Diffstat (limited to 'source')
-rw-r--r--source/blender/io/usd/intern/usd_reader_light.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/source/blender/io/usd/intern/usd_reader_light.h b/source/blender/io/usd/intern/usd_reader_light.h
index b83886767ac..58ce48d5928 100644
--- a/source/blender/io/usd/intern/usd_reader_light.h
+++ b/source/blender/io/usd/intern/usd_reader_light.h
@@ -15,15 +15,8 @@
*/
#pragma once
-/** \file
- * \ingroup busd
- */
-
-#ifndef __USD_READER_LIGHT_H__
-# define __USD_READER_LIGHT_H__
-
-# include "usd.h"
-# include "usd_reader_xform.h"
+#include "usd.h"
+#include "usd_reader_xform.h"
class USDLightReader : public USDXformReader {
@@ -37,7 +30,6 @@ class USDLightReader : public USDXformReader {
}
void createObject(Main *bmain, double motionSampleTime) override;
+
void readObjectData(Main *bmain, double motionSampleTime) override;
};
-
-#endif /* __USD_READER_LIGHT_H__ */