YARP
Yet Another Robot Platform
XMLReaderFileVx.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_XMLREADERFILEVX_H
10 #define YARP_ROBOTINTERFACE_IMPL_XMLREADERFILEVX_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:
28  bool verbose;
29  virtual ~XMLReaderFileVx(){};
30  virtual yarp::robotinterface::experimental::XMLReaderResult getRobotFromFile(const std::string& filename, bool verbose = false) = 0;
31  virtual yarp::robotinterface::experimental::XMLReaderResult getRobotFromString(const std::string& xmlString, bool verbose = false) = 0;
32 };
33 
34 } // namespace impl
35 } // namespace robotinterface
36 } // namespace yarp
37 
38 #endif // YARP_ROBOTINTERFACE_XMLREADERFILEVX_H
Result of the parsing of XMLReader.
Definition: XMLReader.h:26
virtual yarp::robotinterface::experimental::XMLReaderResult getRobotFromFile(const std::string &filename, bool verbose=false)=0
virtual yarp::robotinterface::experimental::XMLReaderResult getRobotFromString(const std::string &xmlString, bool verbose=false)=0
The main, catch-all namespace for YARP.
Definition: environment.h:18