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
cOpFindSimilarLineAll.h
Go to the documentation of this file.
1 /**
2  * @file cOpFindSimilarLineAll
3  * file name: cOpFindSimilarLineAll.h
4  * @author Betti Oesterholz
5  * @date 05.07.2010
6  * @mail webmaster@BioKom.info
7  *
8  * System: C++
9  *
10  * This operator combines all neibourpoints in one dimension with similar
11  * properties.
12  * Copyright (C) @c GPL3 2010 Betti Oesterholz
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License (GPL) as
16  * published by the Free Software Foundation, either version 3 of the
17  * License, or any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program. If not, see <http://www.gnu.org/licenses/>.
26  *
27  *
28  * This operator combines all neibourpoints in one dimension with similar
29  * properties.
30  * In an last step it removes from the created fib -object all underobjects
31  * which point properties are overwritten and so not necessary.
32  *
33  *
34  * @see cOperationFib
35  * @see cOperation
36  * @see cEnviroment
37  */
38 /*
39 History:
40 05.07.2010 Oesterholz created
41 */
42 
43 
44 #ifndef ___C_OP_FIND_SIMILAR_LINE_ALL_H__
45 #define ___C_OP_FIND_SIMILAR_LINE_ALL_H__
46 
47 #include "version.h"
48 
49 #include "cOperationFib.h"
50 
51 #include <string>
52 
53 
54 namespace enviroment{
55 namespace fib{
56 
57 
59 public:
60 
61  /**
62  * The standardconstructor for the operation.
63  * It will create the operation, but won't start it.
64  *
65  * @param operationId the identifer for the operation
66  */
67  cOpFindSimilarLineAll( const cOperationIdentifier & operationId );
68 
69  /**
70  * Destructor of the class cOpFindSimilarLineAll.
71  */
72  virtual ~cOpFindSimilarLineAll();
73 
74  /**
75  * This method creats a new instance of this operator.
76  * Beware: You have to delete the instance after usage.
77  *
78  * @param operationId the identifer for the operation
79  * @return a pointer to a new instance of this operation
80  */
81  virtual cOpFindSimilarLineAll * createInstance( const cOperationIdentifier & operationId ) const;
82 
83  /**
84  * This method runs the operation.
85  * It will wait till the operation is ended befor returning.
86  * Beware: If overwriten call setIsRunning( false ), when the operation
87  * is done.
88  *
89  * @see start()
90  * @see stop()
91  * @see setIsRunning()
92  * @return true if the operation was started
93  */
94  virtual bool run();
95 
96  /**
97  * @return the (class-)name of the operation
98  */
99  virtual std::string getName() const;
100 
101 
102 };//end class cOpFindSimilarLineAll
103 
104 
105 };//end namespace fib
106 };//end namespace enviroment
107 
108 #endif //___C_OP_FIND_SIMILAR_LINE_ALL_H__perator
109 
110 
111 
112 
113 
114 
115