number_object.lut.h
00001
00002
00003 #include "lookup.h"
00004
00005 using namespace KJS;
00006
00007 namespace KJS {
00008
00009 const struct HashEntry numberTableEntries[] = {
00010 { "POSITIVE_INFINITY", NumberObjectImp::PosInfinity, DontEnum, 0, 0 },
00011 { "MAX_VALUE", NumberObjectImp::MaxValue, DontEnum, 0, 0 },
00012 { 0, 0, 0, 0, 0 },
00013 { "NaN", NumberObjectImp::NaNValue, DontEnum, 0, &numberTableEntries[5] },
00014 { "MIN_VALUE", NumberObjectImp::MinValue, DontEnum, 0, 0 },
00015 { "NEGATIVE_INFINITY", NumberObjectImp::NegInfinity, DontEnum, 0, 0 }
00016 };
00017
00018 const struct HashTable numberTable = { 2, 6, numberTableEntries, 5 };
00019
00020 }
This file is part of the documentation for kdelibs Version 3.1.5.