Changeset View
Changeset View
Standalone View
Standalone View
tests/gtests/usd/hierarchy_context_order_test.cc
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * The Original Code is Copyright (C) 2019 Blender Foundation. | * The Original Code is Copyright (C) 2019 Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| #include "intern/abstract_hierarchy_iterator.h" | #include "IO_abstract_hierarchy_iterator.h" | ||||
| #include "testing/testing.h" | #include "testing/testing.h" | ||||
| extern "C" { | extern "C" { | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| } | } | ||||
| using namespace USD; | using namespace IO; | ||||
| class HierarchyContextOrderTest : public testing::Test { | class HierarchyContextOrderTest : public testing::Test { | ||||
| }; | }; | ||||
| static Object *fake_pointer(int value) | static Object *fake_pointer(int value) | ||||
| { | { | ||||
| return static_cast<Object *>(POINTER_FROM_INT(value)); | return static_cast<Object *>(POINTER_FROM_INT(value)); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||