Merge branch 'master' of git+ssh://ares@repo.or.cz/srv/git/lispp
[lispp.git] / LispNil.h
blob6f9cce6952fabc6deeaa717e2b2797aef7da07b7
1 #if !defined(H_LISPNIL)
2 #define H_LISPNIL
4 namespace Lisp
6 class NIL : public Obj
8 public:
10 Obj::eObjectType getObjectType() const;
11 static NIL *make();
12 NIL* create() const;
13 NIL* clone() const;
14 void print(std::ostream& out) const;
15 bool operator==(const Obj* other);
16 protected:
17 NIL();
18 NIL(const NIL& other);
23 #endif