Source: ./classparser/PersistantClassStore.h
|
|
|
|
/***************************************************************************
PersistantClassStore.h - description
-------------------
begin : Mon Mar 29 1999
copyright : (C) 1999 by Jonas Nordin
email : jonas.nordin@syncom.se
***************************************************************************/
/***************************************************************************
* *
* 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 _PERSISTANTCLASSTORE_H_INCLUDED
#define _PERSISTANTCLASSTORE_H_INCLUDED
#include
#include "ParsedClass.h"
/** This class handles all persistant storage of classes,
* global functions and variables.
* @author Jonas Nordin
*/
class CPersistantClassStore
{
public: // Constructor & Destructor
CPersistantClassStore();
CPersistantClassStore( const char *aFilename );
~CPersistantClassStore();
public: // Public attributes
/** Path where the database files will be put. */
QString path;
/** The filename. */
QString filename;
/** Is the file opened? */
bool isOpen;
public: // Public methods
/** Set the path where the database files should be stored.
* @param aPath Path to the database files.
*/
void setPath( const char *aPath );
/** Set the name of the file to read/write.
* @param aFilename Name of the database file.
*/
void setFilename( const char *aFilename );
/** Open the file. */
bool open();
/** Close the file. */
void close();
/** Store a class in the database.
* @param aClass The class to store in the database.
*/
void storeClass( CParsedClass *aClass );
/** Remove a class from the database.
* @param aName Name of the class to remove.
*/
void removeClass( const char * /*aName*/ ) {};
public: // Public queries
/** Has the store been created? */
bool exists();
/** Check if a class exists in the store. */
bool hasClass( const char *aName );
/** Fetch a class from the database using its' name. */
CParsedClass *getClassByName( const char *aName );
private: // Private attributes
/** The database environment. */
// DbEnv env;
/** The database object. */
// Db *db;
};
#endif
| Generated by: jr on radge on Wed Sep 25 00:11:47 2002, using kdoc 2.0a54. |