ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkBioCellularAggregateBase.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef __itkBioCellularAggregateBase_h
19 #define __itkBioCellularAggregateBase_h
20 
21 #include "itkIntTypes.h"
22 #include "itkObject.h"
23 #include "itkObjectFactory.h"
24 
25 namespace itk
26 {
27 namespace bio
28 {
29 class CellBase;
30 
38 class ITK_EXPORT CellularAggregateBase:public Object
39 {
40 public:
43  typedef Object Superclass;
46 
47 /*** Run-time type information (and related methods). */
48  itkTypeMacro(BioCellularAggregateBase, Object);
49 
51  itkNewMacro(Self);
52 
54  typedef float ImagePixelType;
56 
57 public:
58  virtual void Add(CellBase *cellA, CellBase *cellB, double perturbationLength);
59 
60  virtual void Remove(CellBase *cell);
61 
62  virtual SubstrateValueType GetSubstrateValue(IdentifierType cellId,
63  unsigned int substrateId) const;
64 
65 protected:
67  virtual ~CellularAggregateBase();
68  CellularAggregateBase(const Self &);
69  void PrintSelf(std::ostream & os, Indent indent) const;
70 };
71 } // end namespace bio
72 } // end namespace itk
73 
74 #endif
75