summaryrefslogtreecommitdiffstats
path: root/Object.h
blob: bdec9cae54c274cbc0d9c26e8597e192967ea5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef OBJECT_H_
#define OBJECT_H_

#include <cstring>


class Object {
  public:
    virtual ~Object() {}
    
    virtual const char* getType() const = 0;
    
    bool isOfType(const char *type) const {
      return (std::strcmp(getType(), type) == 0);
    }
};

#endif /*OBJECT_H_*/