/***************************************************************************
vim:tabstop=4
circuit.h - description
-------------------
begin : Sun Feb 3 2002
copyright : (C) 2002 by Francois Biot
email : fbiot@free.fr
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef CIRCUIT_H
#define CIRCUIT_H
/**This class stores a list of point and a list of related blocs.
It is used to either create a complete circuit or with a level editor.
The class manages a list of blocs and can insert/delete them.
*@author Francois Biot
*/
class circuit {
public:
circuit();
~circuit();
};
#endif
| Generated by: saturn on FrancoisLinux on Sun Feb 3 20:01:44 2002, using kdoc 2.0a53. |