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

Each row in a TableView is comprised of TableCellViews. More...

#include <ObjectivelyMVC/Text.h>

Go to the source code of this file.

Data Structures

struct  TableCellView
 Each row in a TableView is comprised of TableCellViews. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _TableCellView (void)
 

Detailed Description

Each row in a TableView is comprised of TableCellViews.

Definition in file TableCellView.h.

Function Documentation

◆ _TableCellView()

OBJECTIVELYMVC_EXPORT Class * _TableCellView ( void  )

Definition at line 79 of file TableCellView.c.

79 {
80 static Class *clazz;
81 static Once once;
82
83 do_once(&once, {
84 clazz = _initialize(&(const ClassDef) {
85 .name = "TableCellView",
86 .superclass = _View(),
87 .instanceSize = sizeof(TableCellView),
88 .interfaceOffset = offsetof(TableCellView, interface),
89 .interfaceSize = sizeof(TableCellViewInterface),
91 });
92 });
93
94 return clazz;
95}
static void initialize(Class *clazz)
Definition: TableCellView.c:68
Each row in a TableView is comprised of TableCellViews.
Definition: TableCellView.h:41
Class * _View(void)
The View archetype.
Definition: View.c:1769