File: ccCommandCrossSection.h

package info (click to toggle)
cloudcompare 2.11.3-7.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 58,224 kB
  • sloc: cpp: 229,982; ansic: 30,723; makefile: 84; sh: 20
file content (19 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef COMMAND_CROSS_SECTION_HEADER
#define COMMAND_CROSS_SECTION_HEADER

#include "ccCommandLineInterface.h"

class QString;
class QXmlStreamAttributes;

struct CommandCrossSection : public ccCommandLineInterface::Command
{
	CommandCrossSection();

	bool process(ccCommandLineInterface& cmd) override;
	
private:
	bool readVector(const QXmlStreamAttributes& attributes, CCVector3& P, QString element, const ccCommandLineInterface& cmd);
};

#endif //COMMAND_CROSS_SECTION_HEADER