Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef MACLASSE4_H
- #define MACLASSE4_H
- class Maclasse4
- {
- public:
- Maclasse4();
- ~Maclasse4();
- private:
- int m_entier;
- };
- #endif // MACLASSE4_H
- #include "maclasse4.h"
- Maclasse4::Maclasse4()
- {
- std::cout << "je suis le constructeur" << std::endl;
- }
- Maclasse4::~Maclasse4()
- {
- std::cout << "je suis le destructeur" << std::endl;
- }
- #include <iostream>
- #include "maclasse4.h"
- #include "maclasse4.cpp"
- using namespace std;
- int main()
- {
- Maclasse4 a;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement