-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.h
More file actions
30 lines (25 loc) · 1.11 KB
/
version.h
File metadata and controls
30 lines (25 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @file version.h
* \brief A simple macro definition file
*
* It's a simple file with a bunch of macro definitions related to Windows Resource File.
* @author Plinio Andrade <PAndrade@fele.com>
* @version 1.0.0.0 (Qt: 5.3.1)
*/
#ifndef VERSION_H
#define VERSION_H
#define VER_FILEVERSION 1,0,0,0
#define VER_FILEVERSION_STR "1.0.0.0\0"
#define VERSION_ABOUT "1.0.0.0"
#define VER_PRODUCTVERSION 1,0,0,0
#define VER_PRODUCTVERSION_STR "1.0\0"
#define VER_COMPANYNAME_STR "Franklin Electric"
#define VER_FILEDESCRIPTION_STR "Subdrive Simple Data Logger App"
#define VER_INTERNALNAME_STR "Subdrive Simple Data Logger App"
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2014 Franklin Electric Co., Inc."
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#define VER_ORIGINALFILENAME_STR "SubDriveSimpleDataLogger.exe"
#define VER_PRODUCTNAME_STR "Subdrive Simple Data Logger"
#define VER_COMPANYDOMAIN_STR "fele.com"
#endif // VERSION_H