chore: breaking rename

This commit is contained in:
MistEO
2022-12-02 00:22:47 +08:00
parent 5abf4f0c1c
commit 3d83b80dd6
346 changed files with 374 additions and 372 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include "AbstractResource.h"
namespace json
{
class value;
}
namespace asst
{
class AbstractConfig : public AbstractResource
{
public:
virtual ~AbstractConfig() override = default;
virtual bool load(const std::filesystem::path& path) override;
protected:
virtual bool parse(const json::value& json) = 0;
};
}