/* This file is part of Mitsuba, a physically based rendering system. Copyright (c) 2007-2010 by Wenzel Jakob and others. Mitsuba is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License Version 3 as published by the Free Software Foundation. Mitsuba is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #if !defined(__MITSUBA_H) #define __MITSUBA_H #include #include #include #include #include #include #include #include #include #include #include #include #include /// Current release of Mitsuba #define MTS_VERSION "0.1.3" /// Year of this release #define MTS_YEAR "2010" /// Default port of mtssrv #define MTS_DEFAULT_PORT 7554 #if defined(__LINUX__) /// Default resource directory for packaged releases on Linux #define MTS_RESOURCE_DIR "/usr/share/mitsuba" #endif using std::cout; using std::cerr; using std::endl; /** * Include a basic subset of the core classes */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif /* __MITSUBA_H */