ITK  4.8.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 #include "ITKBioCellExport.h"
25 
26 namespace itk
27 {
28 namespace bio
29 {
30 class CellBase;
31 
39 class ITKBioCell_EXPORT CellularAggregateBase:public Object
40 {
41 public:
44  typedef Object Superclass;
47 
48 /*** Run-time type information (and related methods). */
49  itkTypeMacro(BioCellularAggregateBase, Object);
50 
52  itkNewMacro(Self);
53 
55  typedef float ImagePixelType;
57 
58 public:
59  virtual void Add(CellBase *cellA, CellBase *cellB, double perturbationLength);
60 
61  virtual void Remove(CellBase *cell);
62 
63  virtual SubstrateValueType GetSubstrateValue(IdentifierType cellId,
64  unsigned int substrateId) const;
65 
66 protected:
68  virtual ~CellularAggregateBase();
69  CellularAggregateBase(const Self &);
70  virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
71 };
72 } // end namespace bio
73 } // end namespace itk
74 
75 #endif
Light weight base class for most itk classes.
SizeValueType IdentifierType
Definition: itkIntTypes.h:147
Base class for the CellularAggregates.
Non-templated Base class from which the templated Cell classes will be derived.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Base class for most ITK classes.
Definition: itkObject.h:57