The Fib multimedia system
Fib is a system for storing multimedia data (like images or films).
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
cSelectIndividualToDelete.h
Go to the documentation of this file.
1 /**
2  * @file cSelectIndividualToDelete
3  * file name: cSelectIndividualToDelete.h
4  * @author Betti Oesterholz
5  * @date 18.03.2010
6  * @mail webmaster@BioKom.info
7  *
8  * System: C++
9  *
10  * This header specifies a abstract class for selecting a bad individual.
11  * Copyright (C) @c GPL3 2010 Betti Oesterholz
12  *
13  * This program is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License (GPL) as
15  * published by the Free Software Foundation, either version 3 of the
16  * License, or any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program. If not, see <http://www.gnu.org/licenses/>.
25  *
26  *
27  * This header specifies a abstract class for selecting a bad individual
28  * from the enviroment.
29  *
30  * @see cEnviroment
31  */
32 /*
33 History:
34 18.03.2010 Oesterholz created
35 06.06.2010 Oesterholz method getClassName() added
36 */
37 
38 
39 #ifndef ___C_SELECT_INDIVIDUAL_TO_DELETE_H__
40 #define ___C_SELECT_INDIVIDUAL_TO_DELETE_H__
41 
42 #include "version.h"
43 
44 #include "cIndividual.h"
45 
46 
47 namespace enviroment{
48 
49 
51 public:
52 
53  /**
54  * Destructor of the class cSelectIndividualToDelete.
55  */
56  virtual ~cSelectIndividualToDelete() = 0;
57 
58  /**
59  * @return a pointer to the selected individualdentifier, or the identifier
60  * for no individual (@see cIndividualIdentifier::getNoIndividualIdentifier())
61  */
63 
64  /**
65  * This method clones this object.
66  *
67  * @return a clone of this object
68  */
69  virtual cSelectIndividualToDelete * clone() const = 0;
70 
71  /**
72  * @return the name of this class
73  */
74  virtual string getClassName() const;
75 
76 };//end class cSelectIndividualToDelete
77 
78 
79 };//end namespace enviroment
80 
81 #endif //___C_SELECT_INDIVIDUAL_TO_DELETE_H__
82 
83 
84 
85 
86 
87 
88