Pulled idle callback functions out of rlvviewer2 and moved them into llcallbacklist where they belong. LLCallbackList brought up to current, as well.

This commit is contained in:
Shyotl
2011-10-10 00:02:12 -05:00
parent c99aabf17c
commit fc3ba78aed
6 changed files with 79 additions and 118 deletions

View File

@@ -29,18 +29,6 @@
#include "boost/function.hpp"
// ============================================================================
// From llappearancemgr.h
typedef boost::function<void ()> nullary_func_t;
typedef boost::function<bool ()> bool_func_t;
// Call a given callable once in idle loop.
void doOnIdleOneTime(nullary_func_t callable);
// Repeatedly call a callable in idle loop until it returns true.
void doOnIdleRepeating(bool_func_t callable);
// ============================================================================
// From llinventoryobserver.h