-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added standalone executable Signed-off-by: ahcorde <[email protected]> * make linters happy Signed-off-by: ahcorde <[email protected]> * Fixed verbosity Signed-off-by: ahcorde <[email protected]> * added feedback Signed-off-by: ahcorde <[email protected]> * Added ign plugin -h test and feedback Signed-off-by: ahcorde <[email protected]> * Fix plugin_exe_location and improve coverage Signed-off-by: Steve Peters <[email protected]> Co-authored-by: Steve Peters <[email protected]>
- Loading branch information
Showing
6 changed files
with
204 additions
and
153 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* 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 | ||
* | ||
* 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 IGNITION_PLUGIN_IGN_HH_ | ||
#define IGNITION_PLUGIN_IGN_HH_ | ||
|
||
#include "ignition/plugin/Export.hh" | ||
|
||
/// \brief External hook to read the library version. | ||
/// \return C-string representing the version. Ex.: 0.1.2 | ||
extern "C" const char *ignitionVersion(); | ||
|
||
/// \brief Plugin info | ||
/// \param[in] _plugin Name of the plugin | ||
/// \param[in] _verbose Verbosity level | ||
extern "C" void cmdPluginInfo(const char *_plugin, int _verbose); | ||
|
||
#endif |
Oops, something went wrong.