Started an object oriented abstraction of Gnucomo
[gnucomo.git] / src / include / object.h
1
2 /**************************************************************************
3 **  (c) Copyright 2005, Andromeda Technology & Automation
4 ** This is free software; you can redistribute it and/or modify it under the
5 ** terms of the GNU General Public License, see the file COPYING.
6 ***************************************************************************
7 ** MODULE INFORMATION *
8 ***********************
9 **      FILE NAME      : object.h
10 **      SYSTEM NAME    : 
11 **      VERSION NUMBER : $Revision: 1.1 $
12 **
13 **  DESCRIPTION      :  
14 **
15 **  EXPORTED OBJECTS : 
16 **  LOCAL    OBJECTS : 
17 **  MODULES  USED    :
18 ***************************************************************************
19 **  ADMINISTRATIVE INFORMATION *
20 ********************************
21 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
22 **      CREATION DATE   : Jun 07, 2005
23 **      LAST UPDATE     : 
24 **      MODIFICATIONS   : 
25 **************************************************************************/
26
27 /*****************************
28    $Log: object.h,v $
29    Revision 1.1  2007-02-02 07:36:39  arjen
30    Started an object oriented abstraction of Gnucomo
31
32 *****************************/
33
34 /* static const char *RCSID = "$Id: object.h,v 1.1 2007-02-02 07:36:39 arjen Exp $"; */
35
36 #include "database.h"
37
38 /*
39 ///////////////////////////////////////////////////////////////////////////
40 //  NAME           : Object
41 //  BASECLASS      : database_entity
42 //  MEMBERS        :
43 //  OPERATORS      :
44 //  METHODS        : 
45 //
46 //  DESCRIPTION    : 
47 //
48 //  RELATIONS      :
49 //  SEE ALSO       :
50 //  LAST MODIFIED  : Jun 07, 2005
51 ///////////////////////////////////////////////////////////////////////////
52 */
53
54 class Object : public database_entity
55 {
56
57    String  hostname;
58
59 public:
60
61    Object(const gnucomo_database &);
62    Object(const gnucomo_database &, String);
63
64    String   Hostname();  // Return the database access string.
65 };
66