QTfrontend/AutoUpdater.h
author nemo
Fri, 26 Feb 2010 19:52:22 +0000
changeset 2874 3c7c2bf1ba38
parent 2266 289dc8e51210
child 2948 3f21a9dc93d0
permissions -rw-r--r--
A simple hat reservation mechanism. Can be worked around with a little effort, but to make it useful, you'd have to get everyone you played with to work around it too. Quite a bit of effort for a small reward feature.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2266
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     1
/*
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     2
 * Copyright (C) 2008 Remko Troncon
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     3
 */
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     4
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     5
#ifndef AUTOUPDATER_H
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     6
#define AUTOUPDATER_H
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     7
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     8
class AutoUpdater
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
     9
{
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    10
	public:
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    11
		virtual ~AutoUpdater();
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    12
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    13
		virtual void checkForUpdates() = 0;
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    14
};
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    15
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    16
#endif