PageRenderTime 89ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/strigi-0.7.7/strigidaemon/bin/daemon/xsd/example.h

#
C Header | 30 lines | 28 code | 0 blank | 2 comment | 0 complexity | 089e8f4a8158de5e50d1648123dc1392 MD5 | raw file
Possible License(s): LGPL-2.0
  1. /* DO NOT EDIT */
  2. /* This file is generated from example.xsd */
  3. #ifndef EXAMPLE_H
  4. #define EXAMPLE_H
  5. #include "xsdparser/xmlstream.h"
  6. #include <string>
  7. #include <list>
  8. class GeneralInfo {
  9. public:
  10. GeneralInfo(const std::string& xml = "");
  11. friend std::ostream& operator<<(std::ostream&, const GeneralInfo&);
  12. std::string a_name;
  13. };
  14. class Repository {
  15. public:
  16. Repository(const std::string& xml = "");
  17. friend std::ostream& operator<<(std::ostream&, const Repository&);
  18. std::string a_repositoryType;
  19. };
  20. class DaemonConfiguration {
  21. public:
  22. DaemonConfiguration(const std::string& xml = "");
  23. friend std::ostream& operator<<(std::ostream&, const DaemonConfiguration&);
  24. std::string a_repositoryLocation;
  25. std::string a_repositoryType;
  26. GeneralInfo e_generalinfo;
  27. std::list<Repository> e_repository;
  28. std::string e_info;
  29. };
  30. #endif