Initial commit

This commit is contained in:
flamingcow
2019-05-10 20:59:58 -07:00
commit 187585d02c
4 changed files with 62 additions and 0 deletions

15
usage.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <string>
namespace fireusage {
class UsageTracker {
public:
UsageTracker(const std::string_view& plural_resource_name);
private:
const std::string plural_resource_name_;
};
} // namespace fireusage