ObjectivelyMVC
Object oriented MVC framework for SDL3 and GNU C
Loading...
Searching...
No Matches
Style.h File Reference

The Style type. More...

#include <Objectively/Enum.h>
#include <Objectively/Dictionary.h>
#include <ObjectivelyMVC/Selector.h>

Go to the source code of this file.

Data Structures

struct  Style
 The Style type. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _Style (void)
 

Detailed Description

The Style type.

Definition in file Style.h.

Function Documentation

◆ _Style()

OBJECTIVELYMVC_EXPORT Class * _Style ( void  )

Definition at line 574 of file Style.c.

574 {
575 static Class *clazz;
576 static Once once;
577
578 do_once(&once, {
579 clazz = _initialize(&(const ClassDef) {
580 .name = "Style",
581 .superclass = _Object(),
582 .instanceSize = sizeof(Style),
583 .interfaceOffset = offsetof(Style, interface),
584 .interfaceSize = sizeof(StyleInterface),
586 });
587 });
588
589 return clazz;
590}
static void initialize(Class *clazz)
Definition Style.c:541
The Style type.
Definition Style.h:43