mirror of
https://github.com/wentasah/ros2nix.git
synced 2025-06-11 00:24:48 +03:00
20 lines
245 B
C++
20 lines
245 B
C++
![]() |
#ifndef LIBRARY__LIBRARY_HPP_
|
||
|
#define LIBRARY__LIBRARY_HPP_
|
||
|
|
||
|
#include "library/visibility_control.h"
|
||
|
|
||
|
namespace library
|
||
|
{
|
||
|
|
||
|
class Library
|
||
|
{
|
||
|
public:
|
||
|
Library();
|
||
|
|
||
|
virtual ~Library();
|
||
|
};
|
||
|
|
||
|
} // namespace library
|
||
|
|
||
|
#endif // LIBRARY__LIBRARY_HPP_
|