File: ccCommandRaster.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 (20 lines) | stat: -rw-r--r-- 436 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
20
#ifndef COMMAND_LINE_RASTER_HEADER
#define COMMAND_LINE_RASTER_HEADER

#include "ccCommandLineInterface.h"

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

	bool process(ccCommandLineInterface& cmd) override;
};

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

	bool process(ccCommandLineInterface& cmd) override;
};

#endif //COMMAND_LINE_RASTER_HEADER