File: printmetadata_command.h

package info (click to toggle)
libavif 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,956 kB
  • sloc: ansic: 29,303; cpp: 13,260; sh: 1,145; xml: 1,040; java: 307; makefile: 51
file content (23 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2023 Google LLC
// SPDX-License-Identifier: BSD-2-Clause

#ifndef LIBAVIF_APPS_AVIFGAINMAPUTIL_PRINTMETADATA_COMMAND_H_
#define LIBAVIF_APPS_AVIFGAINMAPUTIL_PRINTMETADATA_COMMAND_H_

#include "avif/avif.h"
#include "program_command.h"

namespace avif {

class PrintMetadataCommand : public ProgramCommand {
 public:
  PrintMetadataCommand();
  avifResult Run() override;

 private:
  argparse::ArgValue<std::string> arg_input_filename_;
};

}  // namespace avif

#endif  // LIBAVIF_APPS_AVIFGAINMAPUTIL_PRINTMETADATA_COMMAND_H_