00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _IMPULSE_SYMBOL_H_
00009 #define _IMPULSE_SYMBOL_H_
00010
00011 #include <string>
00012 #include <map>
00013
00014 #include "../impulse.h"
00015
00016 namespace impulse {
00017
00018
00019
00020
00021
00025
00026 class Symbol : public Frame {
00027
00028 public:
00029
00030 Symbol( string name = "" );
00031
00032 void initSlots();
00033
00034 string inspect() { return string("#") + _name; }
00035
00036 string getName() { return _name; }
00037
00038 static Symbol& at( string name );
00039
00040 protected:
00041
00042 Value _getName( Array& args, Value self ) { return getName(); }
00043
00044 private:
00045
00046 string _name;
00047
00048 static map<string, Symbol*> _symbols;
00049
00050 };
00051
00052 }
00053
00054 #endif