- //=====================================
- // house.h
- //=====================================
- #ifndef HEADER_HOUSE
- #define HEADER_HOUSE
- //-------------------------------------
- #include<iostream>
- //-------------------------------------
- class House{
- public:
- void open()const{ std::cout<<"Open the house door.n"; }
- };//-----------------------------------
- #endif // HEADER_HOUSE