# | Line 2 | Line 2 | |
---|---|---|
2 | #define _POLYCRISTAL_ | |
3 | ||
4 | #include <vector> | |
5 | + | #include <string> |
6 | ||
7 | class Poly_Point; | |
8 | ||
# | Line 10 | Line 11 | class Polycristal | |
11 | public: | |
12 | Polycristal(char *fichier); | |
13 | Polycristal(int nbParticules); | |
14 | + | Polycristal(std::vector<double> &listepoint,std::string nom); |
15 | ||
16 | Polycristal(Polycristal& mdd); | |
17 | ~Polycristal(); | |
# | Line 17 | Line 19 | class Polycristal | |
19 | std::vector<Poly_Point*> random_particules(int nbParticules); | |
20 | ||
21 | protected: | |
22 | + | std::string nomfichier; |
23 | ||
24 | ||
25 | }; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |