Build: fix missing commas.

pull/602/head
Kim Kulling 2015-07-04 09:22:11 +02:00
parent 05524726c8
commit 68f88752b3
2 changed files with 5 additions and 2 deletions

View File

@ -45,13 +45,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef ASSIMP_BUILD_NO_OPENGEX_IMPORTER
namespace Assimp {
struct aiScene;
namespace OpenGEX {
class OpenGEXExporter {
public:
OpenGEXExporter();
~OpenGEXExporter();
bool export( const char *filename, const aiScene* pScene );
bool exportScene( const char *filename, const aiScene* pScene );
};
} // Namespace openGEX
} // Namespace Assimp

View File

@ -161,7 +161,7 @@ namespace AssimpView {
piLightmapTexture( NULL ),
fOpacity(),
fShininess(),
fSpecularStrength()
fSpecularStrength(),
twosided( false ),
pvOriginalNormals( NULL )
{}