24 lines
416 B
C++
24 lines
416 B
C++
#ifndef __CIF_CIRCUIT_H
|
|
#define __CIF_CIRCUIT_H
|
|
|
|
#include <vector>
|
|
|
|
namespace IO {
|
|
class CifPolygon;
|
|
class CifCircuit {
|
|
public:
|
|
CifCircuit(string name, string unit, double scale);
|
|
|
|
bool addPolygon ( CifPolygon* );
|
|
bool write ( string );
|
|
|
|
private:
|
|
string _name;
|
|
string _unit;
|
|
double _scale;
|
|
|
|
std::vector<CifPolygon*> _polygons;
|
|
};
|
|
} // namespace
|
|
#endif
|