/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.c

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-04 16:52:26 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130904165226-d3fqnlk624kwzwtn
Removed debug stuff...

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
 * This function returns the current reference count without chaning it.
184
184
 */
185
185
int s_base_object_get_refcount (SBaseObjectInstance * self) {
186
 
  fprintf(stdout, "Moo!\n");
187
186
  unsigned int ret = self->base_class->get_refcount (self);
188
187
  return ret;
189
188
}
227
226
}
228
227
 
229
228
int method_base_get_refcount (SBaseObjectInstance * self) {
230
 
    fprintf(stdout, "Moo Moo!\n");
231
229
  return self->refcount;
232
230
}
233
231