17 lines
269 B
C++
17 lines
269 B
C++
#pragma once
|
|
|
|
#include "JobCommand.h"
|
|
|
|
class CJCCStorageList : public CJobCommand
|
|
{
|
|
public:
|
|
void Execute(CShopDBProc* pDBProc, CShopJobBase* job);
|
|
};
|
|
|
|
void CJCCStorageList::Execute(CShopDBProc* pDBProc, CShopJobBase* job)
|
|
{
|
|
pDBProc->StorageList(job);
|
|
delete job;
|
|
}
|
|
|