style.项目、文件名统一化

This commit is contained in:
MistEO
2021-12-14 21:29:35 +08:00
parent 2780716245
commit 716d4e079a
128 changed files with 2182 additions and 2240 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include "InfrastProductionTask.h"
namespace asst
{
class InfrastControlTask final : public InfrastProductionTask
{
public:
using InfrastProductionTask::InfrastProductionTask;
virtual ~InfrastControlTask() = default;
const static std::string FacilityName;
const static int MaxNumOfOpers = 5;
private:
virtual bool _run() override;
};
}