#ifndef OPCOUNT_HPP #define OPCOUNT_HPP #include #include #include #include namespace MNN { class OpCount { public: OpCount(); ~OpCount(); static OpCount* get(); void insertOp(const std::string& framework, const std::string& name); const std::map>& getMap(); private: std::map> mOps; }; }; #endif