File: setup.h

package info (click to toggle)
vdr-plugin-weather 0.2.1e-63
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 480 kB
  • ctags: 263
  • sloc: ansic: 769; sh: 345; makefile: 65
file content (17 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef WEATHER_SETUP_H
#define WEATHER_SETUP_H

#include <string.h>

class cWeatherSetup {
	public:
		char stationId[5];
		char user[100];
		char pwd[100];
		int  updateTime;
		int display;
		int passiveFTP;
		cWeatherSetup(void);
};

#endif //WEATHER_SETUP_H