|
|
/*************************************************************************** xqlfactory.h - description ------------------- begin : Sun Feb 10 2002 copyright : (C) 2002 by Raoul Markus email : raoul.markus@gmx.de ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef XQLFACTORY_H #define XQLFACTORY_H // #include "xqlsession.h" class xqlSession; /**baseclass for factories to create xqlObjects. *@author Raoul Markus */ class xqlFactory { public: xqlFactory(xqlSession * pSession); ~xqlFactory(); /** returns a pointer to the session */ xqlSession * getSession(); private: // Private attributes /** holds a pointer to the xqlSession context. */ xqlSession * mSession; }; #endif
Generated by: markus on hobbes on Fri Mar 29 16:15:24 2002, using kdoc 2.0a53. |