summaryrefslogtreecommitdiffstats
path: root/relblobif
diff options
context:
space:
mode:
authorshaan <s.rauniyar@jacobs-university.de>2009-06-07 14:11:10 +0200
committerwww-data <www-data@ubuntu.localdomain>2010-06-08 15:48:23 +0200
commit8d81c2c085efd25197df14bdf1b2bd373e1c37d1 (patch)
tree2b0902863cabfdd4c9f82bc72e5607ca4bbda454 /relblobif
parentc07a5c4031ec83d0e8c17ff6ee5ca3b0cb8df95e (diff)
downloadrasdaman-upstream-8d81c2c085efd25197df14bdf1b2bd373e1c37d1.tar.gz
rasdaman-upstream-8d81c2c085efd25197df14bdf1b2bd373e1c37d1.tar.xz
rasdaman-upstream-8d81c2c085efd25197df14bdf1b2bd373e1c37d1.zip
Modules for relblobif
Diffstat (limited to 'relblobif')
-rw-r--r--relblobif/blobtile.hh7
-rw-r--r--relblobif/dbtile.hh4
-rw-r--r--relblobif/filestorageexception.hh4
-rw-r--r--relblobif/ifilestorage.hh3
-rw-r--r--relblobif/inlinetile.hh4
-rw-r--r--relblobif/simplefilestorage.hh4
6 files changed, 22 insertions, 4 deletions
diff --git a/relblobif/blobtile.hh b/relblobif/blobtile.hh
index 227ea1e..04bba04 100644
--- a/relblobif/blobtile.hh
+++ b/relblobif/blobtile.hh
@@ -60,6 +60,13 @@ accesses the contents of a \Ref{PersTile}.
BLOBTile is an interface class with the base DBMS. It is, therefore,
highly dependent on the base DBMS used.
*/
+/**
+ * \defgroup Relblobifs Relblobif Classes
+ */
+
+/**
+ * \ingroup Relblobifs
+ */
class BLOBTile : public DBTile
{
diff --git a/relblobif/dbtile.hh b/relblobif/dbtile.hh
index d95d86b..24b5ced 100644
--- a/relblobif/dbtile.hh
+++ b/relblobif/dbtile.hh
@@ -48,7 +48,9 @@ class r_Error;
This class is used in tilemgr as an interface to the persistent tiles. There are subclasses of dbtile which store themselves differently. This class can also be used to get rid of tilemgr/TransTile. When no persistent tile is needed then a dbtile and not a blobtile/inlinetile can be used.
*/
-
+/**
+ * \ingroup Relblobifs
+ */
class DBTile : public DBObject
{
public:
diff --git a/relblobif/filestorageexception.hh b/relblobif/filestorageexception.hh
index b39cb69..3cb342b 100644
--- a/relblobif/filestorageexception.hh
+++ b/relblobif/filestorageexception.hh
@@ -33,7 +33,9 @@ rasdaman GmbH.
#ifndef _FILESTORAGEEXCEPTION_HH_
#define _FILESTORAGEEXCEPTION_HH_
-
+/**
+ * \ingroup Relblobifs
+ */
class FileStorageException
{
diff --git a/relblobif/ifilestorage.hh b/relblobif/ifilestorage.hh
index 1a3cb69..b1992f2 100644
--- a/relblobif/ifilestorage.hh
+++ b/relblobif/ifilestorage.hh
@@ -38,6 +38,9 @@ rasdaman GmbH.
class OId;
// The class is the interface for the file storage modules.
+/**
+ * \ingroup Relblobifs
+ */
class IFileStorage
{
public:
diff --git a/relblobif/inlinetile.hh b/relblobif/inlinetile.hh
index 0e833f2..ced2583 100644
--- a/relblobif/inlinetile.hh
+++ b/relblobif/inlinetile.hh
@@ -57,7 +57,9 @@ they can only be inlined by a dbtcindex.
*/
-
+/**
+ * \ingroup Relblobifs
+ */
class InlineTile : public BLOBTile
{
public:
diff --git a/relblobif/simplefilestorage.hh b/relblobif/simplefilestorage.hh
index 7978486..1bf2302 100644
--- a/relblobif/simplefilestorage.hh
+++ b/relblobif/simplefilestorage.hh
@@ -37,7 +37,9 @@ rasdaman GmbH.
#include <vector>
#include <string>
#include "ifilestorage.hh"
-
+/**
+ * \ingroup Relblobifs
+ */
class SimpleFileStorage : public IFileStorage
{
public: