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

The DebugViewController type. More...

Go to the source code of this file.

Data Structures

struct  DebugViewController
 The DebugViewController type. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _DebugViewController (void)
 

Detailed Description

The DebugViewController type.

Definition in file DebugViewController.h.

Function Documentation

◆ _DebugViewController()

OBJECTIVELYMVC_EXPORT Class * _DebugViewController ( void  )

Definition at line 341 of file DebugViewController.c.

341 {
342 static Class *clazz;
343 static Once once;
344
345 do_once(&once, {
346 clazz = _initialize(&(const ClassDef) {
347 .name = "DebugViewController",
348 .superclass = _ViewController(),
349 .instanceSize = sizeof(DebugViewController),
350 .interfaceOffset = offsetof(DebugViewController, interface),
351 .interfaceSize = sizeof(DebugViewControllerInterface),
353 });
354 });
355
356 return clazz;
357}
static void initialize(Class *clazz)
Class * _ViewController(void)
The DebugViewController type.