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

The DebugViewController type. More...

#include <ObjectivelyMVC/TableView.h>
#include <ObjectivelyMVC/ViewController.h>

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 336 of file DebugViewController.c.

336 {
337 static Class *clazz;
338 static Once once;
339
340 do_once(&once, {
341 clazz = _initialize(&(const ClassDef) {
342 .name = "DebugViewController",
343 .superclass = _ViewController(),
344 .instanceSize = sizeof(DebugViewController),
345 .interfaceOffset = offsetof(DebugViewController, interface),
346 .interfaceSize = sizeof(DebugViewControllerInterface),
348 });
349 });
350
351 return clazz;
352}
static void initialize(Class *clazz)
The DebugViewController type.
Class * _ViewController(void)
The ViewController archetype.