ObjectivelyMVC 0.1.0
Object oriented MVC framework for OpenGL, SDL2 and GNU C
Data Structures | Functions
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 537 of file Style.c.

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