Skip to content

Commit

Permalink
doxify enumerator documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dekarl committed Jul 8, 2013
1 parent 3e9435a commit 2e7840b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mythtv/libs/libmythbase/housekeeper.h
Expand Up @@ -21,18 +21,18 @@ class Scheduler;
class HouseKeeper;

enum HouseKeeperScope {
kHKGlobal = 0, // task should only run once per cluster
// e.g. mythfilldatabase
kHKLocal, // task should only run once per machine
// e.g. hardware profile update
kHKInst // task should run on every process
// e.g. ServerPool update
kHKGlobal = 0, ///< task should only run once per cluster
///< e.g. mythfilldatabase
kHKLocal, ///< task should only run once per machine
///< e.g. hardware profile update
kHKInst ///< task should run on every process
///< e.g. ServerPool update
};

enum HouseKeeperStartup {
kHKNormal = 0, // task is checked normally
kHKRunOnStartup, // task is queued when HouseKeeper is started
kHKRunImmediateOnStartup // task is run during HouseKeeper startup
kHKNormal = 0, ///< task is checked normally
kHKRunOnStartup, ///< task is queued when HouseKeeper is started
kHKRunImmediateOnStartup ///< task is run during HouseKeeper startup
};

class MBASE_PUBLIC HouseKeeperTask : public ReferenceCounter
Expand Down

0 comments on commit 2e7840b

Please sign in to comment.