| Polaris: Definition.cc Source File | ||
|
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members
Definition.ccGo to the documentation of this file.00001 /// 00002 /// 00003 /// \file Definition.cc 00004 /// 00005 #include "define.h" 00006 00007 #ifdef POLARIS_GNU_PRAGMAS 00008 #pragma implementation 00009 #endif 00010 00011 #include <stream.h> 00012 00013 #include "Listable.h" 00014 #include "String.h" 00015 00016 #include "p-assert.h" 00017 00018 #include "Definition.h" 00019 00020 int 00021 Definition::hash_value() const 00022 { 00023 return 0xDEADBEEF; 00024 } 00025 00026 Listable * 00027 Definition::listable_clone() const 00028 { 00029 return (Listable *) definition_clone(); 00030 } |
||
|