File: anyobj.cpp

package info (click to toggle)
bcpp 0.0.20210108-1.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 952 kB
  • sloc: cpp: 4,955; sh: 3,262; makefile: 237
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