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
version.h
Go to the documentation of this file.
1 /**
2  * file name: version.h
3  * @author Betti Oesterholz
4  * @date 26.02.2010
5  * @mail webmaster@BioKom.info
6  *
7  * System: C++
8  *
9  * This file contains switches for the enviroment.
10  * Copyright (C) @c GPL3 2010 Betti Oesterholz
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  *
25  *
26  * This file contains the versionsinformation for the enviroment implementation.
27  * This includes descriptions of declarations for versioned
28  * programming switches.
29  *
30  */
31 /*
32 History:
33 26.04.2009 Oesterholz created
34 */
35 
36 
37 /**************************************
38 * Version Information
39 **************************************/
40 
41 //Versionsinformation for the enviroment
42 #define ENVIROMENT_VERSION 0
43 #define ENVIROMENT_VERSION_NAME V0.0.0
44 
45 
46 
47 /**************************************
48 * versioned programming switches
49 **************************************/
50 
51 
52 
53 /**
54  * With this feature the getIndividual() method of the enviroment cEnviroment
55  * will return with a probability of 1/256 the original individual.
56  * @see cEnviroment::getIndividual()
57  *
58  * created: 05.07.2010 Betti Oesterholz
59  * Status: tested
60  *//*
61 History:
62 */
63 #define FEATURE_GET_INDIVIDUAL_WITH_ORIGINAL
64 
65 
66 /**
67  * With this feature the deleteNotRunningOperations() method of the
68  * enviroment cEnviroment will check every secound all operations on the
69  * running list, if they still run. If an operation is found wich dosn't
70  * run anymore, it's status will be changed to not running.
71  * @see cEnviroment::deleteNotRunningOperations()
72  *
73  * created: 05.07.2010 Betti Oesterholz
74  * Status: tested
75  *//*
76 History:
77 */
78 #define FEATURE_CHECK_RUNNIG_OP_FOR_DELETE
79 
80 
81 
82 
83 
84 
85