Facebook
From Scanty Camel, 8 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 374
  1. #include "Punkt.h"
  2. #include <list>
  3.  
  4. using namespace std;
  5.  
  6. #pragma once
  7. class CF_Liniowa
  8. {
  9. public:
  10.         list<CPunkt> lista;
  11.         int A,B;
  12.         CF_Liniowa();
  13.         ~CF_Liniowa(void);
  14.         void Rysuj();
  15.                 void konstr(int A, int B);
  16. };
  17.