// // array.hpp // AwesomeAttractorND // // Created by Joshua Moerman on 11/2/11. // Copyright 2011 Vadovas. All rights reserved. // #ifndef AwesomeAttractorND_array_hpp #define AwesomeAttractorND_array_hpp // workaround to easily work in xcode :D #ifndef __APPLE__ #include #else #include namespace std { using tr1::array; } #endif #endif