QTfrontend/util/platform/AutoUpdater.h
author Wuzzy <Wuzzy2@mail.ru>
Fri, 16 Mar 2018 02:02:27 +0100
changeset 13226 4028d7f85233
parent 8381 588a8e6e2041
permissions -rw-r--r--
Make video metadata strings translatable in frontend In the video page, a small part of the strings was untranslatable, e.g. “Player: ”. These were part of the video metadata. Now these are localizable.
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
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2266
diff changeset
    10
    public:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2266
diff changeset
    11
        virtual ~AutoUpdater();
2266
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    12
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2266
diff changeset
    13
        virtual void checkForUpdates() = 0;
8284
a874d00df4a4 GCI2012: Autoupdate Button in Settings
Drew Gottlieb
parents: 2948
diff changeset
    14
        virtual void checkForUpdatesNow() = 0;
2266
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    15
};
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    16
289dc8e51210 switch to ov_fopen for simplicity
koda
parents:
diff changeset
    17
#endif