Files
jsix_import/src/kernel/objects/event.h
F in Chat for Tabs 8f529046a9 [project] Lose the battle between tabs & spaces
I'm a tabs guy. I like tabs, it's an elegant way to represent
indentation instead of brute-forcing it. But I have to admit that the
world seems to be going towards spaces, and tooling tends not to play
nice with tabs. So here we go, changing the whole repo to spaces since
I'm getting tired of all the inconsistent formatting.
2021-08-01 17:46:16 -07:00

16 lines
257 B
C++

#pragma once
/// \file event.h
/// Definition of event kobject types
#include "objects/kobject.h"
class event :
public kobject
{
public:
event() :
kobject(type::event) {}
static constexpr kobject::type type = kobject::type::event;
};