GeneralSelect.cpp

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

Generated on Tue May 4 16:52:14 2010 for GPLIB++ by  doxygen 1.5.8