~ubuntu-branches/ubuntu/maverick/asc/maverick

« back to all changes in this revision

Viewing changes to source/PropertyIF.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Eddy Petrișor, Gonéri Le Bouder, Cyril Brulebois, Barry deFreese
  • Date: 2008-01-08 19:54:18 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080108195418-n19fc4eobhhqxcy5
Tags: 2.0.1.0-1
[ Eddy Petrișor ]
* fixed Homepage semifield

[ Gonéri Le Bouder ]
* add a watchfile
* move homepage from the description to the new Homepage field

[ Cyril Brulebois ]
* Added Vcs-Svn and Vcs-Browser fields in the control file.

[ Barry deFreese ]
* Fix make-clean lintian warning
* New upstream release
* Bump debhelper build-dep to match compat
* Add desktop file
* Update watch file for new upstream naming
* Remove nostrip check from rules
* Bump Standards Version to 3.7.3
* Add myself to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          propertyIF.h  -  description
3
 
                             -------------------
4
 
    begin                : Thu Jun 29 2000
5
 
    copyright            : (C) 2000 by frank landgraf
6
 
    email                : 
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#ifndef PROPERTYIF_H
19
 
#define PROPERTYIF_H
20
 
 
21
 
/**
22
 
* An Interface (abstract class) thats holds a named (String)Value.
23
 
* @author Frank Landgraf
24
 
*/
25
 
class PropertyIF
26
 
{
27
 
   public:
28
 
      virtual   const char*     getName() const                         =       0;
29
 
      virtual void              setName(const char*)            =       0;
30
 
 
31
 
      virtual   const char*     getValueString() const          =       0;
32
 
      virtual void              setValueString(const char*)     =       0;
33
 
 
34
 
      virtual void              setValueToDefault()                     =       0;
35
 
};
36
 
 
37
 
#endif //#ifndef PROPERTYIF_H