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 539 of file Style.c.

539 {
540 static Class *clazz;
541 static Once once;
542
543 do_once(&once, {
544 clazz = _initialize(&(const ClassDef) {
545 .name = "Style",
546 .superclass = _Object(),
547 .instanceSize = sizeof(Style),
548 .interfaceOffset = offsetof(Style, interface),
549 .interfaceSize = sizeof(StyleInterface),
551 });
552 });
553
554 return clazz;
555}
static void initialize(Class *clazz)
Definition Style.c:506
The Style type.
Definition Style.h:43