GeneralSelect.cpp

Go to the documentation of this file.
00001 #include "GeneralSelect.h"
00002 #include "CFatalException.h"
00003 
00004 GeneralSelect::GeneralSelect():
00005 initialized(false)
00006 {}
00007 
00008 GeneralSelect::~GeneralSelect()
00009 {}
00010 
00011 size_t GeneralSelect::GetOne()
00012 {
00013         if (!initialized)
00014                 throw CFatalException("Trying to use Select::GetOne without initializing !");
00015         return DoGetOne();
00016 }

Generated on Fri Jul 4 15:30:20 2008 for GPLIB++ by  doxygen 1.5.5