historical/toontown-classic.git/panda/include/vector_stdfloat.h

29 lines
630 B
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file vector_stdfloat.h
* @author drose
* @date 2011-10-07
*/
#ifndef VECTOR_STDFLOAT_H
#define VECTOR_STDFLOAT_H
#include "dtoolbase.h"
#include "vector_double.h"
#include "vector_float.h"
#ifndef STDFLOAT_DOUBLE
typedef vector_float vector_stdfloat;
#else
typedef vector_double vector_stdfloat;
#endif // STDFLOAT_DOUBLE
#endif