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

Rows for TableViews. More...

#include <ObjectivelyMVC/StackView.h>
#include <ObjectivelyMVC/TableCellView.h>

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}
static void initialize(Class *clazz)
Definition: TableRowView.c:145
Class * _StackView(void)
The StackView archetype.
Definition: StackView.c:262
Rows for TableViews.
Definition: TableRowView.h:44