blob: e652aaf6a2297417a202d7efc74e736d431097f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>, (C) 2012
//Copyright: See COPYING file that comes with this distribution
#ifndef DEFINE_H
#define DEFINE_H
#include "config.h"
#undef VERSION
#undef PACKAGE
#undef PRETTYNAME
#define APP_NAME "remote_laboratory_client"
#define APP_VERSION "1.0"
#define APP_PRETTYNAME "Remote Laboratory Client"
#endif
|