Salome HOME
97b673ee4c14857a2aaaf0b08a8a35841d3dbcf3
[tools/hxx2salome.git] / CppExamples / COMPO_CXX_SRC / src / CALCUL / CALCUL_CXX / Calc.hxx
1 #ifndef _CALCUL_HXX_
2 #define _CALCUL_HXX_
3
4
5 class CALCUL
6 {
7 // Méthodes publiques
8 public:
9     int add(int i1, int i2);
10     int mul(int i1, int i2);
11     unsigned fact(unsigned n);
12 };
13
14 #endif