File: wsclean.h

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (22 lines) | stat: -rw-r--r-- 573 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef WSCLEAN_INTERFACE_WSCLEAN_H_
#define WSCLEAN_INTERFACE_WSCLEAN_H_

/**
 * This is the public header file for WSClean, that other programs
 * can use to call WSClean operations from C++ applications.
 */

#include <string>

// The following list of dependencies (including transitive ones) should be kept
// minimal: no files outside the interface/ directory should be included,
// because they are not installed.
#include "inmemoryms.h"

namespace wsclean {

void Image(const std::string& command_line_parameters, InMemoryMs&& ms);

}  // namespace wsclean

#endif