Placed ResInsight code in separate namespace called external
This commit is contained in:
parent
bfebe538c2
commit
8467d82eb6
@ -52,6 +52,8 @@
|
||||
// }
|
||||
// } // namespace caf
|
||||
|
||||
namespace external
|
||||
{
|
||||
namespace cvf
|
||||
{
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -409,3 +411,4 @@ void StructGridInterface::characteristicCellSizes( double* iSize, double* jSize,
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
@ -42,6 +42,8 @@
|
||||
|
||||
// #include "../cafPdmCore/cafAppEnum.h"
|
||||
|
||||
namespace external
|
||||
{
|
||||
namespace cvf
|
||||
{
|
||||
class CellFilterBase;
|
||||
@ -130,3 +132,4 @@ private:
|
||||
};
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
4
external/resinsight/LibCore/cvfArray.h
vendored
4
external/resinsight/LibCore/cvfArray.h
vendored
@ -42,6 +42,8 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace external
|
||||
{
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -147,5 +149,5 @@ typedef Array<Color3f> Color3fArray;
|
||||
typedef Array<Color4ub> Color4ubArray;
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfArray.inl"
|
||||
|
4
external/resinsight/LibCore/cvfArray.inl
vendored
4
external/resinsight/LibCore/cvfArray.inl
vendored
@ -34,7 +34,8 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external
|
||||
{
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -781,3 +782,4 @@ void Array<T>::swap(Array& other)
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
@ -36,6 +36,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -152,3 +153,4 @@ inline const ArrayWrapperConst< const ElmType*, ElmType > wrapArrayConst( ElmTy
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
@ -36,6 +36,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -131,3 +132,4 @@ inline ArrayWrapperToEdit< ElmType*, ElmType > wrapArrayToEdit(ElmType* array, s
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfAssert.cpp
vendored
2
external/resinsight/LibCore/cvfAssert.cpp
vendored
@ -53,6 +53,7 @@
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -487,3 +488,4 @@ Assert::FailAction Assert::reportFailedAssert(const char* fileName, int lineNumb
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfAssert.h
vendored
2
external/resinsight/LibCore/cvfAssert.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
// Forward of base class for assert handlers
|
||||
@ -103,3 +104,4 @@ private:
|
||||
# define CVF_TIGHT_ASSERT_MSG(expr, msg) ((void)0)
|
||||
#endif
|
||||
|
||||
} //namespace external
|
||||
|
@ -37,9 +37,9 @@
|
||||
|
||||
#include "cvfAtomicCounter.h"
|
||||
|
||||
namespace external {
|
||||
// Some older GCC version do not support atomics, we have seen this for RHEL5
|
||||
#if defined(CVF_ATOMIC_COUNTER_CLASS_EXISTS)
|
||||
|
||||
namespace cvf {
|
||||
|
||||
#ifdef WIN32
|
||||
@ -185,3 +185,4 @@ int AtomicCounter::operator -- (int) // postfix
|
||||
|
||||
|
||||
#endif // CVF_ATOMICS_COMPILED
|
||||
} //namespace external
|
||||
|
@ -39,6 +39,8 @@
|
||||
|
||||
#include "cvfBase.h"
|
||||
|
||||
namespace external {
|
||||
|
||||
#ifdef WIN32
|
||||
#define CVF_ATOMIC_COUNTER_CLASS_EXISTS
|
||||
#elif defined(CVF_IOS) || defined(CVF_OSX)
|
||||
@ -89,3 +91,4 @@ private:
|
||||
} // namespace cvf
|
||||
|
||||
#endif
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfBase.h
vendored
3
external/resinsight/LibCore/cvfBase.h
vendored
@ -89,6 +89,7 @@
|
||||
// Brings in size_t and definition of NULL
|
||||
#include <cstddef>
|
||||
|
||||
namespace external {
|
||||
// Added due to conflict between std::min/max and define in Windows.h
|
||||
#define CVF_MIN(X, Y) ((X) < (Y) ? (X) : (Y))
|
||||
#define CVF_MAX(X, Y) ((X) > (Y) ? (X) : (Y))
|
||||
@ -124,7 +125,9 @@ typedef int64_t int64;
|
||||
#endif
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
||||
#include "cvfConfigCore.h"
|
||||
#include "cvfVersion.h"
|
||||
#include "cvfAssert.h"
|
||||
|
||||
|
3
external/resinsight/LibCore/cvfBase64.cpp
vendored
3
external/resinsight/LibCore/cvfBase64.cpp
vendored
@ -50,6 +50,8 @@ CVF_GCC_DIAGNOSTIC_IGNORE("-Wunused-parameter")
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
namespace external
|
||||
{
|
||||
|
||||
// Doxygen conditional section to hide contents of the cvf_base64 namespace
|
||||
/// \cond CVF_NEVER_INCLUDE
|
||||
@ -235,3 +237,4 @@ cvf::ref<cvf::UByteArray> Base64::decode(const std::string& encodedData)
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfBase64.h
vendored
3
external/resinsight/LibCore/cvfBase64.h
vendored
@ -40,7 +40,7 @@
|
||||
#include "cvfString.h"
|
||||
#include "cvfArray.h"
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//==================================================================================================
|
||||
@ -56,3 +56,4 @@ public:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfCharArray.cpp
vendored
2
external/resinsight/LibCore/cvfCharArray.cpp
vendored
@ -42,6 +42,7 @@
|
||||
#include <sstream>
|
||||
#include <iomanip>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -181,3 +182,4 @@ char* CharArray::ptr()
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfCharArray.h
vendored
2
external/resinsight/LibCore/cvfCharArray.h
vendored
@ -41,6 +41,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -71,3 +72,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -179,3 +180,4 @@ void CodeLocation::swap(CodeLocation& other)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -81,3 +82,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
5
external/resinsight/LibCore/cvfCollection.h
vendored
5
external/resinsight/LibCore/cvfCollection.h
vendored
@ -42,6 +42,7 @@
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -97,5 +98,5 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#include "cvfCollection.inl"
|
||||
} //namespace external
|
||||
#include "cvfCollection.inl"
|
@ -35,6 +35,7 @@
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -330,3 +331,4 @@ typename Collection<T>::const_iterator Collection<T>::end() const
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfColor3.cpp
vendored
2
external/resinsight/LibCore/cvfColor3.cpp
vendored
@ -39,6 +39,7 @@
|
||||
#include "cvfColor3.h"
|
||||
#include "cvfMath.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -449,3 +450,4 @@ const ubyte* Color3ub::ptr() const
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfColor3.h
vendored
3
external/resinsight/LibCore/cvfColor3.h
vendored
@ -39,7 +39,7 @@
|
||||
|
||||
#include "cvfBase.h"
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
// Forward declarations
|
||||
@ -183,3 +183,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfColor4.cpp
vendored
2
external/resinsight/LibCore/cvfColor4.cpp
vendored
@ -40,6 +40,7 @@
|
||||
#include "cvfColor3.h"
|
||||
#include "cvfMath.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -405,3 +406,4 @@ const ubyte* Color4ub::ptr() const
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfColor4.h
vendored
2
external/resinsight/LibCore/cvfColor4.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfColor3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class Color4ub;
|
||||
@ -124,3 +125,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfConfigCore.h
vendored
2
external/resinsight/LibCore/cvfConfigCore.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
|
||||
|
||||
// Define this one to tell windows.h to not define min() and max() as macros
|
||||
@ -74,3 +75,4 @@
|
||||
#endif
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
@ -43,6 +43,7 @@
|
||||
#include <cstdio>
|
||||
#include <cstdarg>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -220,3 +221,4 @@ String DebugTimer::makeMessageStartString(const char* msg)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfDebugTimer.h
vendored
3
external/resinsight/LibCore/cvfDebugTimer.h
vendored
@ -39,7 +39,7 @@
|
||||
|
||||
#include "cvfString.h"
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class Timer;
|
||||
@ -84,3 +84,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfFlags.h
vendored
3
external/resinsight/LibCore/cvfFlags.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -72,5 +73,5 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfFlags.inl"
|
||||
|
3
external/resinsight/LibCore/cvfFlags.inl
vendored
3
external/resinsight/LibCore/cvfFlags.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -195,3 +195,4 @@ inline bool Flags<FlagEnum>::testFlag(FlagEnum flag) const
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -69,3 +70,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLibCore.h
vendored
2
external/resinsight/LibCore/cvfLibCore.h
vendored
@ -71,4 +71,4 @@
|
||||
#include "cvfVector2.h"
|
||||
#include "cvfVector3.h"
|
||||
#include "cvfVector4.h"
|
||||
#include "cvfVersion.h"
|
||||
#include "cvfVersion.h"
|
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfObject.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class LogEvent;
|
||||
@ -60,3 +61,4 @@ public:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
@ -49,6 +49,7 @@
|
||||
#include <cstdarg>
|
||||
#endif
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -157,3 +158,4 @@ void LogDestinationConsole::writeToStderr(const char* theString, bool addNewLine
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -40,6 +40,7 @@
|
||||
#include "cvfLogDestination.h"
|
||||
#include "cvfMutex.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -65,3 +66,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
@ -49,6 +49,7 @@
|
||||
#include <cstdarg>
|
||||
#endif
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -200,3 +201,4 @@ void LogDestinationFile::writeToFile(const char* theString, bool addNewLine)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include "cvfString.h"
|
||||
#include "cvfMutex.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -69,3 +70,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLogEvent.cpp
vendored
2
external/resinsight/LibCore/cvfLogEvent.cpp
vendored
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfLogEvent.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -144,3 +145,4 @@ void LogEvent::swap(LogEvent& other)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLogEvent.h
vendored
2
external/resinsight/LibCore/cvfLogEvent.h
vendored
@ -41,6 +41,7 @@
|
||||
#include "cvfString.h"
|
||||
#include "cvfLogger.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -78,3 +79,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "cvfLogManager.h"
|
||||
#include "cvfLogDestinationConsole.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -253,3 +254,4 @@ String LogManager::nameOfParentLogger(const String& childLoggerName)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLogManager.h
vendored
2
external/resinsight/LibCore/cvfLogManager.h
vendored
@ -44,6 +44,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class LogDestination;
|
||||
@ -93,3 +94,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLogger.cpp
vendored
2
external/resinsight/LibCore/cvfLogger.cpp
vendored
@ -40,6 +40,7 @@
|
||||
#include "cvfLogEvent.h"
|
||||
#include "cvfLogDestination.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -216,3 +217,4 @@ void Logger::log(const String& message, Logger::Level messageLevel, const CodeLo
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfLogger.h
vendored
2
external/resinsight/LibCore/cvfLogger.h
vendored
@ -41,6 +41,7 @@
|
||||
#include "cvfString.h"
|
||||
#include "cvfCodeLocation.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class LogEvent;
|
||||
@ -110,3 +111,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfMath.cpp
vendored
2
external/resinsight/LibCore/cvfMath.cpp
vendored
@ -40,6 +40,7 @@
|
||||
|
||||
#include <cmath>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -350,3 +351,4 @@ bool Math::isUndefined(float val)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
4
external/resinsight/LibCore/cvfMath.h
vendored
4
external/resinsight/LibCore/cvfMath.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfBase.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -111,5 +112,6 @@ const float UNDEFINED_FLOAT_THRESHOLD = 2.99e+38f;
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
||||
#include "cvfMath.inl"
|
||||
#include "cvfMath.inl"
|
3
external/resinsight/LibCore/cvfMath.inl
vendored
3
external/resinsight/LibCore/cvfMath.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -105,3 +105,4 @@ int Math::sign(const T& val)
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfMatrix3.h
vendored
3
external/resinsight/LibCore/cvfMatrix3.h
vendored
@ -40,6 +40,7 @@
|
||||
#include "cvfSystem.h"
|
||||
#include "cvfVector3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -105,5 +106,5 @@ typedef Matrix3<float> Mat3f;
|
||||
typedef Matrix3<double> Mat3d;
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfMatrix3.inl"
|
||||
|
3
external/resinsight/LibCore/cvfMatrix3.inl
vendored
3
external/resinsight/LibCore/cvfMatrix3.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -484,3 +484,4 @@ Matrix3<S> Matrix3<S>::fromRotation(Vector3<S> axis, S angle)
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
4
external/resinsight/LibCore/cvfMatrix4.h
vendored
4
external/resinsight/LibCore/cvfMatrix4.h
vendored
@ -44,7 +44,7 @@
|
||||
#include "cvfVector4.h"
|
||||
#include "cvfMatrix3.h"
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -139,5 +139,5 @@ typedef Matrix4<float> Mat4f;
|
||||
typedef Matrix4<double> Mat4d;
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfMatrix4.inl"
|
||||
|
3
external/resinsight/LibCore/cvfMatrix4.inl
vendored
3
external/resinsight/LibCore/cvfMatrix4.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -935,3 +935,4 @@ cvf::Vector4<S> operator*(const cvf::Matrix4<S>& m, const cvf::Vector4<S>& v)
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfMutex.cpp
vendored
2
external/resinsight/LibCore/cvfMutex.cpp
vendored
@ -49,6 +49,7 @@
|
||||
#include <pthread.h>
|
||||
#endif
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -218,3 +219,4 @@ Mutex::ScopedLock::~ScopedLock()
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfMutex.h
vendored
2
external/resinsight/LibCore/cvfMutex.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -76,3 +77,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfObject.cpp
vendored
2
external/resinsight/LibCore/cvfObject.cpp
vendored
@ -41,6 +41,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -133,3 +134,4 @@ void Object::dumpActiveObjectInstances()
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
5
external/resinsight/LibCore/cvfObject.h
vendored
5
external/resinsight/LibCore/cvfObject.h
vendored
@ -44,6 +44,8 @@
|
||||
|
||||
#include "cvfAtomicCounter.h"
|
||||
|
||||
namespace external {
|
||||
|
||||
#if !defined(CVF_ATOMIC_COUNTER_CLASS_EXISTS) && !defined(CVF_USE_NON_THREADSAFE_REFERENCE_COUNT)
|
||||
#error No support for atomics. Define CVF_USE_NON_THREADSAFE_REFERENCE_COUNT to be able to compile
|
||||
#endif
|
||||
@ -193,5 +195,6 @@ cref<T> make_cref(Args&&... args);
|
||||
/// @}
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
||||
#include "cvfObject.inl"
|
||||
#include "cvfObject.inl"
|
3
external/resinsight/LibCore/cvfObject.inl
vendored
3
external/resinsight/LibCore/cvfObject.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -589,3 +589,4 @@ cref<T> make_cref(Args&&... args)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfPlane.cpp
vendored
2
external/resinsight/LibCore/cvfPlane.cpp
vendored
@ -39,6 +39,7 @@
|
||||
#include "cvfPlane.h"
|
||||
#include "cvfMath.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -673,3 +674,4 @@ Plane::Side Plane::side(const Vec3dArray& points) const
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfPlane.h
vendored
3
external/resinsight/LibCore/cvfPlane.h
vendored
@ -42,7 +42,7 @@
|
||||
#include "cvfMatrix4.h"
|
||||
#include "cvfArray.h"
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//=================================================================================================
|
||||
@ -104,3 +104,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfProgramOptions.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -716,3 +717,4 @@ std::vector<String> ProgramOptions::breakStringIntoLines(const String& str, size
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include "cvfString.h"
|
||||
#include "cvfCollection.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -151,3 +152,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfPropertySet.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -177,3 +178,4 @@ std::vector<Variant> PropertySet::allValues() const
|
||||
|
||||
|
||||
} // namespace gc
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfPropertySet.h
vendored
2
external/resinsight/LibCore/cvfPropertySet.h
vendored
@ -43,6 +43,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -76,3 +77,4 @@ private:
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfPropertySetCollection.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -173,3 +174,4 @@ PropertySet* PropertySetCollection::firstPropertySetOfType(const String& classTy
|
||||
|
||||
|
||||
} // namespace gc
|
||||
} //namespace external
|
||||
|
@ -43,6 +43,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -72,3 +73,4 @@ private:
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
5
external/resinsight/LibCore/cvfQuat.h
vendored
5
external/resinsight/LibCore/cvfQuat.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfVector3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -96,5 +97,5 @@ typedef Quat<float> Quatf;
|
||||
typedef Quat<double> Quatd;
|
||||
|
||||
}
|
||||
|
||||
#include "cvfQuat.inl"
|
||||
} //namespace external
|
||||
#include "cvfQuat.inl"
|
3
external/resinsight/LibCore/cvfQuat.inl
vendored
3
external/resinsight/LibCore/cvfQuat.inl
vendored
@ -35,7 +35,7 @@
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -393,3 +393,4 @@ Quat<S> Quat<S>::fromRotationMatrix(const Matrix4<S>& rotMat)
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
4
external/resinsight/LibCore/cvfRect.h
vendored
4
external/resinsight/LibCore/cvfRect.h
vendored
@ -38,6 +38,7 @@
|
||||
#pragma once
|
||||
#include "cvfVector2.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -97,5 +98,6 @@ typedef Rect<int> Recti; ///< A rect with integer components
|
||||
typedef Rect<uint> Rectui; ///< A rect with unsigned integer components
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfRect.inl"
|
||||
|
||||
|
3
external/resinsight/LibCore/cvfRect.inl
vendored
3
external/resinsight/LibCore/cvfRect.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -602,3 +602,4 @@ bool Rect<T>::clipTest(double p, double q, double *u1, double *u2)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfString.cpp
vendored
2
external/resinsight/LibCore/cvfString.cpp
vendored
@ -48,6 +48,7 @@
|
||||
#include <limits>
|
||||
#include <iosfwd>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -1562,3 +1563,4 @@ void String::swap(String& other)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfString.h
vendored
2
external/resinsight/LibCore/cvfString.h
vendored
@ -41,6 +41,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -138,3 +139,4 @@ private:
|
||||
String operator+(const char* str1, const String& str2);
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfSystem.cpp
vendored
2
external/resinsight/LibCore/cvfSystem.cpp
vendored
@ -44,6 +44,7 @@
|
||||
#include <cstdio>
|
||||
#include <cstdarg>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -329,3 +330,4 @@ int System::strcmp(const char* str1, const char* str2)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfSystem.h
vendored
2
external/resinsight/LibCore/cvfSystem.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -61,3 +62,4 @@ public:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfTBBControl.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -84,3 +85,4 @@ bool TBBControl::isEnabled()
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfTBBControl.h
vendored
2
external/resinsight/LibCore/cvfTBBControl.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -59,3 +60,4 @@ private:
|
||||
} // cvf
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfTimer.cpp
vendored
3
external/resinsight/LibCore/cvfTimer.cpp
vendored
@ -53,7 +53,7 @@
|
||||
#include "mach/mach_time.h"
|
||||
#endif
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -273,3 +273,4 @@ double Timer::lapTime()
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfTimer.h
vendored
2
external/resinsight/LibCore/cvfTimer.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfObject.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class PrivateTimerState;
|
||||
@ -65,3 +66,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfTrace.cpp
vendored
2
external/resinsight/LibCore/cvfTrace.cpp
vendored
@ -53,6 +53,7 @@
|
||||
#include <android/log.h>
|
||||
#endif
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//==================================================================================================
|
||||
@ -161,3 +162,4 @@ void Trace::showTraceOutput(String text, bool addNewLine)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfTrace.h
vendored
2
external/resinsight/LibCore/cvfTrace.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfString.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -65,3 +66,4 @@ private:
|
||||
#define CVF_TRACE_FILELINE cvf::Trace::showFileLineNumber(__FILE__, __LINE__, "");
|
||||
#define CVF_TRACE_FILELINE_MSG(message) cvf::Trace::showFileLineNumber(__FILE__, __LINE__, message);
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfValueArray.h
vendored
2
external/resinsight/LibCore/cvfValueArray.h
vendored
@ -40,6 +40,7 @@
|
||||
#include "cvfVector4.h"
|
||||
#include "cvfColor4.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -74,3 +75,4 @@ typedef ValueArray<Color4ub> Color4ubValueArray;
|
||||
}
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfVariant.cpp
vendored
2
external/resinsight/LibCore/cvfVariant.cpp
vendored
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfVariant.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -450,3 +451,4 @@ void Variant::assignData(const void* pointerToData, size_t dataSizeInBytes)
|
||||
|
||||
|
||||
} // namespace gc
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfVariant.h
vendored
2
external/resinsight/LibCore/cvfVariant.h
vendored
@ -44,6 +44,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -114,3 +115,4 @@ private:
|
||||
};
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfVector2.cpp
vendored
2
external/resinsight/LibCore/cvfVector2.cpp
vendored
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfVector2.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -48,3 +49,4 @@ template<> Vector2<int> const Vector2<int>::UNDEFINED(UNDEFINED_INT, UNDEFINE
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfVector2.h
vendored
3
external/resinsight/LibCore/cvfVector2.h
vendored
@ -41,6 +41,7 @@
|
||||
|
||||
#include <limits>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -132,5 +133,5 @@ typedef Vector2<uint> Vec2ui; ///< A vector with uint components
|
||||
typedef Vector2<ushort> Vec2us; ///< A vector with ushort components
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfVector2.inl"
|
||||
|
2
external/resinsight/LibCore/cvfVector2.inl
vendored
2
external/resinsight/LibCore/cvfVector2.inl
vendored
@ -35,6 +35,7 @@
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -530,3 +531,4 @@ inline void Vector2<S>::set(S x, S y)
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfVector3.cpp
vendored
2
external/resinsight/LibCore/cvfVector3.cpp
vendored
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfVector3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -48,3 +49,4 @@ template<> Vector3<size_t> const Vector3<size_t>::UNDEFINED(UNDEFINED_SIZE_T, UN
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
4
external/resinsight/LibCore/cvfVector3.h
vendored
4
external/resinsight/LibCore/cvfVector3.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfVector2.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -158,5 +159,6 @@ typedef Vector3<uint> Vec3ui; ///< A vector with uint components
|
||||
typedef Vector3<size_t> Vec3st; ///< A vector with size_t components
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfVector3.inl"
|
||||
|
||||
|
3
external/resinsight/LibCore/cvfVector3.inl
vendored
3
external/resinsight/LibCore/cvfVector3.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -797,3 +797,4 @@ const Vector3<S> Vector3<S>::perpendicularVector(bool* perpendicularOK) const
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibCore/cvfVector4.cpp
vendored
2
external/resinsight/LibCore/cvfVector4.cpp
vendored
@ -39,6 +39,7 @@
|
||||
#include "cvfVector4.h"
|
||||
#include "cvfMath.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -48,3 +49,4 @@ template<> Vector4<int> const Vector4<int>::UNDEFINED(UNDEFINED_INT, UNDEFINE
|
||||
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfVector4.h
vendored
3
external/resinsight/LibCore/cvfVector4.h
vendored
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfVector3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -125,5 +126,5 @@ typedef Vector4<double> Vec4d; ///< A vector with double components
|
||||
typedef Vector4<int> Vec4i; ///< A vector with int components
|
||||
|
||||
}
|
||||
|
||||
} //namespace external
|
||||
#include "cvfVector4.inl"
|
||||
|
3
external/resinsight/LibCore/cvfVector4.inl
vendored
3
external/resinsight/LibCore/cvfVector4.inl
vendored
@ -34,7 +34,7 @@
|
||||
//
|
||||
//##################################################################################################
|
||||
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -508,3 +508,4 @@ inline void Vector4<S>::set(S x, S y, S z, S w)
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
3
external/resinsight/LibCore/cvfVersion.h
vendored
3
external/resinsight/LibCore/cvfVersion.h
vendored
@ -38,8 +38,9 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
|
||||
namespace external {
|
||||
#define CVF_MAJOR_VERSION "0" // Major version number
|
||||
#define CVF_MINOR_VERSION "9" // Minor version number
|
||||
#define CVF_SPECIAL_BUILD "" // Special build description
|
||||
#define CVF_BUILD_NUMBER "5" // Build number. Increase for each shipment
|
||||
} //namespace external
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "cvfArrowGenerator.h"
|
||||
#include "cvfGeometryUtils.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
//==================================================================================================
|
||||
@ -116,3 +117,4 @@ void ArrowGenerator::generate(GeometryBuilder* builder)
|
||||
}
|
||||
|
||||
} // namespace cvf
|
||||
} //namespace external
|
||||
|
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class GeometryBuilder;
|
||||
@ -68,3 +69,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -41,6 +41,7 @@
|
||||
|
||||
#include <limits>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -454,3 +455,4 @@ void BoundingBox::cutAbove(double depth)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include "../LibCore/cvfMatrix4.h"
|
||||
#include "../LibCore/cvfString.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -97,3 +98,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -47,6 +47,7 @@
|
||||
#include <limits>
|
||||
#include <thread>
|
||||
|
||||
namespace external {
|
||||
#define ALLOCATION_CHUNK_SIZE 10000
|
||||
|
||||
namespace cvf {
|
||||
@ -937,3 +938,4 @@ void BoundingBoxTree::findIntersections(const cvf::BoundingBox& bb, std::vector<
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -40,6 +40,7 @@
|
||||
#include "../LibCore/cvfObject.h"
|
||||
#include "cvfBoundingBox.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class BoundingBoxTreeImpl;
|
||||
@ -67,3 +68,4 @@ private:
|
||||
|
||||
} // Namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -40,6 +40,7 @@
|
||||
#include "cvfPatchGenerator.h"
|
||||
#include "cvfGeometryUtils.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -189,3 +190,4 @@ void BoxGenerator::generate(GeometryBuilder* builder)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
@ -39,6 +39,7 @@
|
||||
|
||||
#include "cvfVector3.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class GeometryBuilder;
|
||||
@ -70,3 +71,4 @@ private:
|
||||
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include "cvfBase.h"
|
||||
#include "cvfEdgeKey.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -128,3 +129,4 @@ EdgeKey EdgeKey::fromkeyVal(int64 edgeKeyVal)
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibGeometry/cvfEdgeKey.h
vendored
2
external/resinsight/LibGeometry/cvfEdgeKey.h
vendored
@ -37,6 +37,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -69,3 +70,4 @@ private:
|
||||
}
|
||||
|
||||
|
||||
} //namespace external
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "cvfBoundingBox.h"
|
||||
#include "cvfFrustum.h"
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
|
||||
@ -229,3 +230,4 @@ bool Frustum::isOutside(const BoundingBox& bbox) const
|
||||
|
||||
} // namespace cvf
|
||||
|
||||
} //namespace external
|
||||
|
2
external/resinsight/LibGeometry/cvfFrustum.h
vendored
2
external/resinsight/LibGeometry/cvfFrustum.h
vendored
@ -42,6 +42,7 @@
|
||||
|
||||
#include <map>
|
||||
|
||||
namespace external {
|
||||
namespace cvf {
|
||||
|
||||
class BoundingBox;
|
||||
@ -89,3 +90,4 @@ private:
|
||||
};
|
||||
|
||||
}
|
||||
} //namespace external
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user