Skip to content
Snippets Groups Projects
Commit 112f34d2 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Replace include guards with pragma once

parent f8f19f44
Branches Ubuntu14 stable
No related tags found
No related merge requests found
......@@ -21,8 +21,7 @@
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#ifndef ARMARX_RNGPROVIDERCOMPONENT_SLICE
#define ARMARX_RNGPROVIDERCOMPONENT_SLICE
#pragma once
module armarx
{
interface RNGProviderComponentInterface
......@@ -30,4 +29,3 @@ module armarx
int generateRandomInt();
};
};
#endif
#ifndef _ARMARX_MultiThreadingExample_ServerInterface_SLICE
#define _ARMARX_MultiThreadingExample_ServerInterface_SLICE
#pragma once
module armarx
{
interface MultiThreadingExampleServerInterface
......@@ -8,5 +7,3 @@ module armarx
string getValue();
};
};
#endif
......@@ -21,8 +21,8 @@
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#ifndef ROBOTSTATEEXAMPLECOMPONENT_INTERFACE_SLICE
#define ROBOTSTATEEXAMPLECOMPONENT_INTERFACE_SLICE
#pragma once
#include <RobotAPI/interface/core/RobotState.ice>
#include <RobotAPI/interface/core/FramedPoseBase.ice>
......@@ -44,5 +44,3 @@ module armarx
};
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment