ccCommandCrossSection.h 481 B

12345678910111213141516171819
  1. #ifndef COMMAND_CROSS_SECTION_HEADER
  2. #define COMMAND_CROSS_SECTION_HEADER
  3. #include "ccCommandLineInterface.h"
  4. class QString;
  5. class QXmlStreamAttributes;
  6. struct CommandCrossSection : public ccCommandLineInterface::Command
  7. {
  8. CommandCrossSection();
  9. bool process(ccCommandLineInterface& cmd) override;
  10. private:
  11. bool readVector(const QXmlStreamAttributes& attributes, CCVector3& P, QString element, const ccCommandLineInterface& cmd);
  12. };
  13. #endif //COMMAND_CROSS_SECTION_HEADER