00001 // 00002 // protos/nil.h 00003 // 00004 // Copyright (c) 2008-2009, Mike Austin 00005 // All rights reserved. 00006 // 00007 00008 #ifndef _IMPULSE_NIL_H_ 00009 #define _IMPULSE_NIL_H_ 00010 00011 #include "../impulse.h" 00012 00013 namespace impulse { 00014 00015 // 00016 // class Nil 00017 // 00018 00019 class Nil : public Frame { 00020 00021 public: 00022 00023 Nil() { } 00024 00025 string inspect() { return "[Nil]"; } 00026 00027 protected: 00028 00029 private: 00030 00031 }; 00032 00033 } 00034 00035 #endif