// KoeffListe.h: Schnittstelle für die Klasse KoeffListe. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_KOEFFLISTE_H__1F7F503B_99E4_4714_AB20_A6FE43010429__INCLUDED_) #define AFX_KOEFFLISTE_H__1F7F503B_99E4_4714_AB20_A6FE43010429__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class KoeffListe { public: KoeffListe(); virtual ~KoeffListe(); int porq; //1=p, 2 =q int xkoeff; int ykoeff; KoeffListe *next; }; #endif // !defined(AFX_KOEFFLISTE_H__1F7F503B_99E4_4714_AB20_A6FE43010429__INCLUDED_)