23 lines
420 B
C++
23 lines
420 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef __TIMERANGE__
|
|
#define __TIMERANGE__
|
|
|
|
|
|
#include "math/nrange.h"
|
|
#include "time/ntime.h"
|
|
|
|
|
|
namespace GS {
|
|
|
|
typedef Range <Time> TimeRange;
|
|
|
|
} // GS
|
|
|
|
|
|
#endif // __TIMERANGE__
|