File: rficonsole.cpp

package info (click to toggle)
aoflagger 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,944 kB
  • sloc: cpp: 60,273; sh: 21; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 362 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @file @brief This is a temporary place holder to inform users that the
 * main binary is now called 'aoflagger' instead of 'rficonsole'.
 * @todo Remove this file after some time.
 */

#include <iostream>

int main(int argc, char *argv[])
{
	std::cout << "rficonsole has been renamed to 'aoflagger'. Please run aoflagger binary instead.\n";
	return -1;
}