File: anyobj.cpp

package info (click to toggle)
bcpp 0.0.20050725-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 680 kB
  • ctags: 336
  • sloc: cpp: 4,410; sh: 2,871; makefile: 179
file content (15 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ANYOBJECT_CODE
#define _ANYOBJECT_CODE

// Program code written by Steven De Toni ACBC 11

#include "anyobj.h"

// ###############################################################################
// #### ANYOBJECT Destructor ####
// ##############################
// Set to virtual so that objects can call there own destructors
// without becoming confused.
ANYOBJECT::~ANYOBJECT (void) {}

#endif