~ubuntu-branches/ubuntu/karmic/muse/karmic-proposed

« back to all changes in this revision

Viewing changes to synti/stklib/Object.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************/
 
2
/*  Object Class, by Perry R. Cook, 1995-99  */
 
3
/*                                           */
 
4
/*  This is mostly here for compatibility    */
 
5
/*  with Objective C.  We'll also stick      */
 
6
/*  global defines here, so everyone will    */
 
7
/*  see them.                                */
 
8
/*********************************************/
 
9
 
 
10
#include "Object.h"
 
11
 
 
12
/* This is just here for compatibility and convenience,
 
13
   so there's no need to do any real calculations.
 
14
   I do set up some redefinable variables in Object.h.
 
15
*/
 
16
 
 
17
Object :: Object()
 
18
{
 
19
}
 
20
 
 
21
Object :: ~Object()
 
22
{
 
23
}
 
24