Skip to content

Commit

Permalink
Rename the FbxVisitor class to just Visitor, since it's not a part of…
Browse files Browse the repository at this point in the history
… the SDK.
  • Loading branch information
izrik committed May 5, 2017
1 parent d612dba commit 4e0fa5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Collector.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System;
using FbxSharp;
using System.Collections.Generic;

namespace FbxSharp
{
public class Collector : FbxVisitor
public class Collector : Visitor
{
public ISet<FbxObject> Collect(FbxObject obj)
{
Expand Down
2 changes: 1 addition & 1 deletion FbxSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<None Include="release.sh" />
<None Include="build.sh" />
<Compile Include="Collector.cs" />
<Compile Include="FbxVisitor.cs" />
<Compile Include="Visitor.cs" />
<Compile Include="ObjectPrinter.cs" />
<Compile Include="TypeHelper.cs" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion FbxVisitor.cs → Visitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace FbxSharp
{
public class FbxVisitor
public class Visitor
{
public virtual void Visit(FbxObject obj) { }
public virtual void Visit(Scene scene) { }
Expand Down

0 comments on commit 4e0fa5f

Please sign in to comment.