-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leverage forward declarations to improve compile times
- Loading branch information
1 parent
3ef3b93
commit 5c4cd2b
Showing
280 changed files
with
5,676 additions
and
3,877 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
tesseract_collision/core/include/tesseract_collision/core/fwd.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/** | ||
* @file types.h | ||
* @brief Tesseracts Collision Forward Declarations | ||
* | ||
* @author Levi Armstrong | ||
* @date February 17, 2024 | ||
* @version TODO | ||
* @bug No known bugs | ||
* | ||
* @copyright Copyright (c) 2024, Levi Armstrong | ||
* | ||
* @par License | ||
* Software License Agreement (Apache License) | ||
* @par | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* @par | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#ifndef TESSERACT_COLLISION_CORE_TESSERACT_COLLISION_FWD_H | ||
#define TESSERACT_COLLISION_CORE_TESSERACT_COLLISION_FWD_H | ||
|
||
namespace tesseract_collision | ||
{ | ||
// types.h | ||
enum class ContinuousCollisionType; | ||
enum class ContactTestType; | ||
struct ContactResult; | ||
class ContactResultMap; | ||
struct ContactRequest; | ||
struct ContactTestData; | ||
enum class CollisionEvaluatorType; | ||
enum class CollisionCheckProgramType; | ||
enum class ACMOverrideType; | ||
struct ContactManagerConfig; | ||
struct CollisionCheckConfig; | ||
struct ContactTrajectorySubstepResults; | ||
struct ContactTrajectoryStepResults; | ||
struct ContactTrajectoryResults; | ||
|
||
// contact_managers_plugin_factory.h | ||
class DiscreteContactManagerFactory; | ||
class ContinuousContactManagerFactory; | ||
class ContactManagersPluginFactory; | ||
|
||
// convex_decomposition.h | ||
class ConvexDecomposition; | ||
|
||
// discrete_contact_manager.h | ||
class DiscreteContactManager; | ||
|
||
// continuous_contact_manager.h | ||
class ContinuousContactManager; | ||
} // namespace tesseract_collision | ||
|
||
#endif // TESSERACT_COLLISION_CORE_TESSERACT_COLLISION_FWD_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.