blob: 380b8be3f93fa7aeef87875bc83af374c7b9c608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "../../common.h"
#include "StdShopInfoDialog.h"
class StdFoodInfoDialog : public StdShopInfoDialog {
public:
StdFoodInfoDialog(T2Tenant *inTenant);
virtual ~StdFoodInfoDialog();
protected:
virtual void GenerateComments();
virtual BOOL GenerateStatusProc(CString &outStr, BOOL &outIsBad);
};
|