[Avida-cvs] [avida-svn] r463 - development/source/script

brysonda@myxo.css.msu.edu brysonda at myxo.css.msu.edu
Sun Feb 5 07:32:59 PST 2006


Author: brysonda
Date: 2006-02-05 10:32:59 -0500 (Sun, 05 Feb 2006)
New Revision: 463

Added:
   development/source/script/cScriptObject.cc
   development/source/script/cScriptObject.h
   development/source/script/cSymbolTable.cc
   development/source/script/cSymbolTable.h
Log:
Add stub symbol table and script object files.

Added: development/source/script/cScriptObject.cc
===================================================================
--- development/source/script/cScriptObject.cc	2006-02-04 00:50:04 UTC (rev 462)
+++ development/source/script/cScriptObject.cc	2006-02-05 15:32:59 UTC (rev 463)
@@ -0,0 +1,11 @@
+/*
+ *  cScriptObject.cc
+ *  Avida
+ *
+ *  Created by David on 2/2/06.
+ *  Copyright 2006 Michigan State University. All rights reserved.
+ *
+ */
+
+#include "cScriptObject.h"
+


Property changes on: development/source/script/cScriptObject.cc
___________________________________________________________________
Name: svn:eol-style
   + native

Added: development/source/script/cScriptObject.h
===================================================================
--- development/source/script/cScriptObject.h	2006-02-04 00:50:04 UTC (rev 462)
+++ development/source/script/cScriptObject.h	2006-02-05 15:32:59 UTC (rev 463)
@@ -0,0 +1,21 @@
+/*
+ *  cScriptObject.h
+ *  Avida
+ *
+ *  Created by David on 2/2/06.
+ *  Copyright 2006 Michigan State University. All rights reserved.
+ *
+ */
+
+#ifndef cScriptObject_h
+#define cScriptObject_h
+
+class cScriptObject
+{
+private:
+  
+public:
+    cScriptObject() { ; }
+};
+
+#endif


Property changes on: development/source/script/cScriptObject.h
___________________________________________________________________
Name: svn:eol-style
   + native

Added: development/source/script/cSymbolTable.cc
===================================================================
--- development/source/script/cSymbolTable.cc	2006-02-04 00:50:04 UTC (rev 462)
+++ development/source/script/cSymbolTable.cc	2006-02-05 15:32:59 UTC (rev 463)
@@ -0,0 +1,11 @@
+/*
+ *  cSymbolTable.cc
+ *  Avida
+ *
+ *  Created by David on 2/2/06.
+ *  Copyright 2006 Michigan State University. All rights reserved.
+ *
+ */
+
+#include "cSymbolTable.h"
+


Property changes on: development/source/script/cSymbolTable.cc
___________________________________________________________________
Name: svn:eol-style
   + native

Added: development/source/script/cSymbolTable.h
===================================================================
--- development/source/script/cSymbolTable.h	2006-02-04 00:50:04 UTC (rev 462)
+++ development/source/script/cSymbolTable.h	2006-02-05 15:32:59 UTC (rev 463)
@@ -0,0 +1,30 @@
+/*
+ *  cSymbolTable.h
+ *  Avida
+ *
+ *  Created by David on 2/2/06.
+ *  Copyright 2006 Michigan State University. All rights reserved.
+ *
+ */
+
+#ifndef cSymbolTable_h
+#define cSymbolTable_h
+
+#ifndef cASSymbol_h
+#include "cASSymbol.h"
+#endif
+#ifndef tDictionary_h
+#include "tDictionary.h"
+#endif
+
+
+class cSymbolTable
+{
+private:
+  tDictionary<cASSymbol> m_symbols;
+  
+public:
+  cSymbolTable() { ; }
+};
+
+#endif


Property changes on: development/source/script/cSymbolTable.h
___________________________________________________________________
Name: svn:eol-style
   + native




More information about the Avida-cvs mailing list