YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
RFPlugin.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6#ifndef YARP_OS_RFPLUGIN_H
7#define YARP_OS_RFPLUGIN_H
8
9#include <yarp/os/api.h>
10
11#include <string>
12
13namespace yarp::os {
14
16{
17public:
18 RFPlugin();
19
20 virtual ~RFPlugin();
21
27 virtual bool open(const std::string& command);
28
32 virtual void close();
33
37 virtual bool isRunning();
38
42 virtual std::string getCmd();
43
47 virtual int getThreadKey();
48
49#ifndef DOXYGEN_SHOULD_SKIP_THIS
50private:
51 class Private;
52 Private* mPriv;
53#endif // DOXYGEN_SHOULD_SKIP_THIS
54};
55
56
57} // namespace yarp::os
58
59#endif // YARP_OS_RFPLUGIN_H
An interface to the operating system, including Port based communication.
#define YARP_os_API
Definition api.h:18