YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
xmlappsaver.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_MANAGER_XMLAPPSAVER
7#define YARP_MANAGER_XMLAPPSAVER
8
11
12namespace yarp::manager {
13
14
18class XmlAppSaver : public AppSaver
19{
20
21public:
22 XmlAppSaver(const char* szFileName=NULL);
23 bool save(Application* application) override;
24 virtual ~XmlAppSaver();
25
26protected:
27
28private:
29 bool serialXml(Application* app, const char* szFile);
30 std::string strFileName;
31};
32
33} // namespace yarp::manager
34
35
36#endif // __YARP_MANAGER_XMLAPPSAVER__
Class Application.
Class XmlAppSaver.
Definition xmlappsaver.h:19
bool save(Application *application) override