Initial VS2013, C++11 and linux commit. This most likely won't build and suffers from some compiler issues. More commits to follow.

This commit is contained in:
mfeemster
2014-08-31 21:25:15 -07:00
parent d1196f4205
commit 79d611dd20
70 changed files with 8833 additions and 1902 deletions

View File

@ -11,6 +11,11 @@
namespace EmberNs
{
#define ITERATORUSINGS \
using Iterator<T>::NextXformFromIndex; \
using Iterator<T>::DoFinalXform; \
using Iterator<T>::DoBadVals;
/// <summary>
/// Iterator base class.
/// Iterating is one loop level outside of the inner xform application loop so it's still very important
@ -255,6 +260,7 @@ protected:
template <typename T>
class EMBER_API StandardIterator : public Iterator<T>
{
ITERATORUSINGS
public:
/// <summary>
/// Empty constructor.
@ -375,6 +381,7 @@ public:
template <typename T>
class EMBER_API XaosIterator : public Iterator<T>
{
ITERATORUSINGS
public:
/// <summary>
/// Empty constructor.