pmc/include/object.h
author Markus Bröker <mbroeker@largo.localnet>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 37 0fbbe329c3a2
parent 34 4a35f239fe5b
child 42 83b8151b966d
permissions -rw-r--r--
demos/parser * calc * c_compiler I want to rescue the history of the calc files... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * test/demos/pmc/include/object.h
 * Copyright (C) 2008 Markus Broeker
 */

#ifndef OBJECT_H
#define OBJECT_H

#include <string>
#include <iostream>

class Object {
  protected:
    std::string name;

  public:
    virtual ~ Object () {
        std::cout << "Freeing Object " << name << std::endl;
     };
};
#endif