pmc/include/object.hpp
author Markus Bröker<broeker.markus@googlemail.com>
Fri, 20 Oct 2017 06:41:27 +0200
changeset 168 dfb60716880c
parent 65 76514757b0d6
permissions -rw-r--r--
Broken OSX Demo added

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

#ifndef OBJECT_H
#define OBJECT_H

#include <string>

extern int refCounter;

class Object {
  protected:
    std::string name;

  public:
    virtual ~ Object ();

    virtual std::string getName ();
    virtual Object getClass ();
    int getInstances ();
};
#endif