SheafSystem  0.0.0.0
code_template.h
Go to the documentation of this file.
1 
2 //
3 // Copyright (c) 2014 Limit Point Systems, Inc.
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
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 
24 
25 #ifndef ${DERIVED}_H
26 #define ${DERIVED}_H
27 
28 #ifndef SHEAF_DLL_SPEC_H
29 #include "SheafSystem/sheaf_dll_spec.h"
30 #endif
31 
32 #ifndef ${BASE}_H
33 #include "SheafSystem/${base}.h"
34 #endif
35 
36 namespace fiber_bundle
37 {
38 class SHEAF_DLL_SPEC ${coords};
39 class SHEAF_DLL_SPEC ${property};
40 class SHEAF_DLL_SPEC ${fiber};
41 class SHEAF_DLL_SPEC ${volatile_fiber};
42 }
43 
44 namespace fields
45 {
46 
50 class SHEAF_DLL_SPEC ${derived} : public ${base}
51 {
52  //===========================================================================
54  //===========================================================================
56 public:
57 
59 
62  typedef ${property} property_section_type;
63 
67  typedef ${coords} coordinates_section_type;
68 
72  ${derived}();
73 
77  ${derived}(const ${derived}& xother, bool xauto_access);
78 
82  ${derived}(const ${coords}& xcoordinates, const ${property}& xproperty,
83  bool xauto_access);
84 
89  ${derived}(namespace_poset& xns,
90  const poset_path& xcoordinates_path,
91  const poset_path& xproperty_path,
92  bool xauto_access);
93 
97  virtual ${derived}& operator=(const ${abs_base}& xother);
98 
102  ${derived}& operator=(const ${derived}& xother);
103 
107  ${derived}& operator=(const ${property}& xsection);
108 
112  ${derived}& operator=(const ${fiber}& xfiber);
113 
117  ${derived}& operator=(const ${volatile_fiber}& xfiber);
118 
122  virtual ~${derived}();
123 
127  ${property}& property() const;
128 
132  bool same_property_fiber_schema(const ${derived}& xother,
133  bool xauto_access) const;
134 
135 protected:
136 
140  ${derived}(${property}* xproperty,
141  ${coords_invertible}* xcoordinates,
142  base_space_member* xbase_space);
143 
144 private:
145 
147 
148  //===========================================================================
150  //===========================================================================
152 
153 public:
154 
158  virtual const std::string& class_name() const;
159 
163  static const std::string& static_class_name();
164 
168  virtual bool is_ancestor_of(const any* xother) const;
169 
173  virtual ${derived}* clone() const;
174 
178  virtual bool invariant() const;
179 
180 protected:
181 private:
182 
184 };
185 
186 //=============================================================================
187 // NON-MEMBER FUNCTIONS OF CLASS ${DERIVED}
188 //=============================================================================
189 
193 SHEAF_DLL_SPEC ${derived}& operator>>(const ${derived}& xsrc, ${derived}& xdst);
194 
198 SHEAF_DLL_SPEC std::ostream& operator<<(std::ostream& xos, const ${derived}& xfield);
199 
200 } // namespace fields
201 
202 //==============================================================================
203 
205 
206 ${PLACEHOLDER}
207 
208 
209 #endif // ifndef ${DERIVED}_H
Namespace for fields component of sheaf system.
SHEAF_DLL_SPEC field_at0 & operator>>(const field_at0 &xsrc, field_at0 &xdst)
Pushes xsrc.property() to xdst.property().
Definition: field_at0.cc:513
Namespace for the fiber_bundles component of the sheaf system.
SHEAF_DLL_SPEC std::ostream & operator<<(std::ostream &os, const binary_index &xbi)
Insert binary_index& xbi into ostream& os.
Definition: binary_index.cc:35