blob: 9ded3acc3fd7d704e8be394985f4594660f22896 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// class room implementation.
#ifndef ROOM_CXX
#define ROOM_CXX
#include "room.h"
using namespace std;
room::room( string s_name ) : name( s_name )
{}
room::~room()
{}
#endif
|