Skip to content

Commit 7055fa0

Browse files
committed
Rename ArithmeticNodes to BinaryOperationNodes.
1 parent e30ee39 commit 7055fa0

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Sources/BuiltInNodes/BI_ArithmeticUINodes.cpp renamed to Sources/BuiltInNodes/BI_BinaryOperationNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "BI_ArithmeticUINodes.hpp"
1+
#include "BI_BinaryOperationNodes.hpp"
22
#include "NE_Localization.hpp"
33
#include "NUIE_NodeCommonParameters.hpp"
44

Sources/BuiltInNodes/BI_ArithmeticUINodes.hpp renamed to Sources/BuiltInNodes/BI_BinaryOperationNodes.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef BI_ARITHMETICUINODES_HPP
2-
#define BI_ARITHMETICUINODES_HPP
1+
#ifndef BI_BINARYOPERATIONNODES_HPP
2+
#define BI_BINARYOPERATIONNODES_HPP
33

44
#include "NE_SingleValues.hpp"
55
#include "BI_BasicUINode.hpp"

Sources/BuiltInNodes/BI_BuiltInNodes.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#include "BI_InputUINodes.hpp"
55
#include "BI_ViewerUINodes.hpp"
6-
#include "BI_ArithmeticUINodes.hpp"
6+
#include "BI_BinaryOperationNodes.hpp"
77

88
#endif

Sources/NodeEngineTest/ArithmeticNodesTest.cpp renamed to Sources/NodeEngineTest/BinaryOperationNodesTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#include "SimpleTest.hpp"
22
#include "NUIE_NodeUIManager.hpp"
3-
#include "BI_ArithmeticUINodes.hpp"
3+
#include "BI_BinaryOperationNodes.hpp"
44
#include "BI_InputUINodes.hpp"
55
#include "TestUtils.hpp"
66

77
using namespace NE;
88
using namespace NUIE;
99
using namespace BI;
1010

11-
namespace ArithmeticNodesTest
11+
namespace BinaryOperationNodesTest
1212
{
1313

14-
TEST (TestAllArithmeticNodes)
14+
TEST (TestAllBinaryOperationNodes)
1515
{
1616
TestUIEnvironment env;
1717
NodeUIManager uiManager (env);

Sources/NodeEngineTest/CompatibitilityTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "NE_MemoryStream.hpp"
33
#include "NUIE_NodeEditor.hpp"
44
#include "BI_InputUINodes.hpp"
5-
#include "BI_ArithmeticUINodes.hpp"
5+
#include "BI_BinaryOperationNodes.hpp"
66
#include "BI_ViewerUINodes.hpp"
77
#include "VisualTestFramework.hpp"
88
#include "TestReference.hpp"

0 commit comments

Comments
 (0)