YARP
Yet Another Robot Platform
XMLReaderFileV3.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006-2020 Istituto Italiano di Tecnologia (IIT)
3  * All rights reserved.
4  *
5  * This software may be modified and distributed under the terms of the
6  * BSD-3-Clause license. See the accompanying LICENSE file for details.
7  */
8 
9 #ifndef YARP_ROBOTINTERFACE_IMPL_XMLREADERFILEV3_H
10 #define YARP_ROBOTINTERFACE_IMPL_XMLREADERFILEV3_H
11 
13 
14 #include <string>
15 
16 namespace yarp {
17 namespace robotinterface {
18 
19 namespace experimental {
20 class XMLReaderResult;
21 } // namespace experimental
22 
23 namespace impl {
24 
26 {
27 public:
29  ~XMLReaderFileV3() override;
30 
31  yarp::robotinterface::experimental::XMLReaderResult getRobotFromFile(const std::string& filename, bool verbose = false) override;
32  yarp::robotinterface::experimental::XMLReaderResult getRobotFromString(const std::string& xmlString, bool verbose = false) override;
33 
34 private:
35  class Private;
36  Private* const mPriv;
37 };
38 
39 } // namespace impl
40 } // namespace robotinterface
41 } // namespace yarp
42 
43 #endif // YARP_ROBOTINTERFACE_XMLREADERFILEV3_H
Result of the parsing of XMLReader.
Definition: XMLReader.h:26
yarp::robotinterface::experimental::XMLReaderResult getRobotFromFile(const std::string &filename, bool verbose=false) override
yarp::robotinterface::experimental::XMLReaderResult getRobotFromString(const std::string &xmlString, bool verbose=false) override
The main, catch-all namespace for YARP.
Definition: environment.h:18