mirror of
https://github.com/wentasah/ros2nix.git
synced 2025-06-09 15:52:23 +03:00
19 lines
245 B
C++
19 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_
|