DesignPattern/18.MediatorPattern/2.Code/common.h

16 lines
176 B
C
Raw Normal View History

2019-11-03 23:46:24 +00:00
#ifndef __COMMON_H__
#define __COMMON_H__
// <20><><EFBFBD><EFBFBD>ͷ<EFBFBD>ļ<EFBFBD>
#include <vector>
using namespace std;
enum PERSON_TYPE
{
NONE_PERSON,
LANDLORD,
TENANT
};
#endif //__COMMON_H__