[vtkusers] SINTAX ERROR found in parsing the header file

Norberto Sanchez Escobar norberto at ctm.ulpgc.es
Wed Jun 1 11:16:58 EDT 2005


Hello,
	I have that error and here is my code:


#ifndef _OSCARCCOLLISION_v10B_
#define _OSCARCCOLLISION_v10B_

#pragma once

#include "LibGennuevo.h"		

#define COLDETECT


#ifdef COLDETECT
	
#include "ColDetectnuevo.h"

#endif 


using namespace std;
//////////////////////////////////////////////

/// Namespace DC (Deteccion Colisiones)

namespace DC
{
	static const unsigned MAX_DEFORMABLES = 10;
	static const unsigned MAX_HERRAMIENTAS = 2;
	static const unsigned MAX_ESTATICOS = 10;
	static const unsigned MAX_COLISIONES = 3000;
	static const unsigned MAX_PARESCOLISIONABLES = 3000;
	static const unsigned MAX_BOLAS= 30;

/// ***** CLASES 
class vtkColision
{
/// *****	Atributos 
protected:

	vtkLibGenerica* _libreria;
	vector<vtkModeloDeformable*> _vDeformables;
	vector<vtkModeloHerramienta*>   _vHerramientas; 
	vector<vtkModeloEstatico*>  _vEstaticos;
	vector<vtkEsfera*>			_vBolas;
	vector<vtkInfoColision> _vColisiones;	/// Vector de colisiones
	vector<unsigned> _vIdColisiones;

	bool _inicializado;		
public:

	///  ---------- Constructor / Destructor -----------
	vtkColision();
	~vtkColision();

	/// ==============

Please help me

Thanks, Norberto Sanchez



More information about the vtkusers mailing list