ObjectivelyMVC 0.1.0
Object oriented MVC framework for OpenGL, SDL2 and GNU C
Data Structures | Functions
Option.h File Reference

Select Options. More...

#include <ObjectivelyMVC/Text.h>

Go to the source code of this file.

Data Structures

struct  Option
 Select Options. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _Option (void)
 

Detailed Description

Select Options.

Definition in file Option.h.

Function Documentation

◆ _Option()

OBJECTIVELYMVC_EXPORT Class * _Option ( void  )

Definition at line 151 of file Option.c.

151 {
152 static Class *clazz;
153 static Once once;
154
155 do_once(&once, {
156 clazz = _initialize(&(const ClassDef) {
157 .name = "Option",
158 .superclass = _View(),
159 .instanceSize = sizeof(Option),
160 .interfaceOffset = offsetof(Option, interface),
161 .interfaceSize = sizeof(OptionInterface),
163 });
164 });
165
166 return clazz;
167}
static void initialize(Class *clazz)
Definition: Option.c:134
Select Options.
Definition: Option.h:41
Class * _View(void)
The View archetype.
Definition: View.c:1769