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

16 lines
181 B
C
Raw Normal View History

2019-11-03 23:46:24 +00:00
#ifndef __COMMON_H__
#define __COMMON_H__
2021-10-28 15:15:51 +00:00
// 公共头文件
2019-11-03 23:46:24 +00:00
#include <vector>
using namespace std;
enum PERSON_TYPE
{
NONE_PERSON,
LANDLORD,
TENANT
};
#endif //__COMMON_H__