normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
committed by Alex
parent 723ca13482
commit 451eb0806a
295 changed files with 1592 additions and 2009 deletions
+7 -9
View File
@@ -15,19 +15,19 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef TIMEOUT_MANAGER_H
#define TIMEOUT_MANAGER_H
#pragma once
#include "common/timer.h"
#include "common/types.h"
#include <vector>
//ms between checking all timeouts
//timeouts are generally somewhat large, so its safe to use a
//value on the order of seconds here.
#define TIMEOUT_GRANULARITY 1000
#include "types.h"
#include "timer.h"
#include <vector>
//timeoutable objects automatically register themselves
//with the global TimeoutManager object
class TimeoutManager;
@@ -62,5 +62,3 @@ protected:
};
extern TimeoutManager timeout_manager;
#endif