mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
88d3e4fd47
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
21 lines
483 B
C++
21 lines
483 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
namespace EightBit {
|
|
class ProfileScopeEventArgs {
|
|
private:
|
|
std::string m_scope;
|
|
uint64_t m_cycles;
|
|
uint64_t m_count;
|
|
|
|
public:
|
|
ProfileScopeEventArgs(std::string scope, uint64_t cycles, uint64_t count)
|
|
: m_scope(scope), m_cycles(cycles), m_count(count) {}
|
|
|
|
const std::string& getScope() const { return m_scope; }
|
|
uint64_t getCycles() const { return m_cycles; }
|
|
uint64_t getCount() const { return m_count; }
|
|
};
|
|
} |