Supprimer 'SH3D/object/coordtable/coordtable.h'

This commit is contained in:
Milan Garnier 2019-07-18 14:42:14 +02:00
parent 23b5b36f3e
commit 88a1c9432f
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#ifndef COORDTABLE_H
#define COORDTABLE_H
#include "coord.h"
class CoordTable
{
public:
CoordTable(int size=1);
CoordTable(const CoordTable& table,bool link);
~CoordTable();
Coord* getCoord(int num);
private:
Coord* m_coords;
int m_size;
bool m_byAllocation; // si il faut libérer la memoire à sa destruction ou si il est simplement une reference
};
#endif