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

Rows for TableViews. More...

Go to the source code of this file.

Data Structures

struct  TableRowView
 Rows for TableViews. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _TableRowView (void)
 

Detailed Description

Rows for TableViews.

Definition in file TableRowView.h.

Function Documentation

◆ _TableRowView()

OBJECTIVELYMVC_EXPORT Class * _TableRowView ( void  )

Definition at line 162 of file TableRowView.c.

162 {
163 static Class *clazz;
164 static Once once;
165
166 do_once(&once, {
167 clazz = _initialize(&(const ClassDef) {
168 .name = "TableRowView",
169 .superclass = _StackView(),
170 .instanceSize = sizeof(TableRowView),
171 .interfaceOffset = offsetof(TableRowView, interface),
172 .interfaceSize = sizeof(TableRowViewInterface),
174 });
175 });
176
177 return clazz;
178}
Class * _StackView(void)
Definition StackView.c:287
static void initialize(Class *clazz)
Rows for TableViews.