/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/baseobject.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-06-04 17:36:18 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150604173618-qobcg09u33eyrpfd
* started work SBox (Untested).
* Fixed compilation errors.
* added more macros and made use of them.
* Added more documentation.
* Made s_object_get_class return a SObjectClass pointer instead.
* Reorderd S_TYPE_* enum.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
/** @brief
181
181
 * This function creates a new base object.
182
182
 * 
183
 
 * 
184
 
 * 
185
183
 * @return a new SObject
186
184
 */
187
185
SObject * s_object_new ();
195
193
/**
196
194
 * This function gets the class (which hold the object methods).
197
195
 */
198
 
void * s_object_get_class (SObject * self);
 
196
SObjectClass * s_object_get_class (SObject * self);
199
197
 
200
198
/**
201
199
 * This function sets the instance class of an object.