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.
16 lines
257 B
C++
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;
|
|
};
|