Use more accurate names for forward declares

This commit is contained in:
Danny Robson 2011-10-10 13:39:15 +11:00
parent bb6a3a6fb8
commit ed33f3ebce

View File

@ -20,8 +20,8 @@
#ifndef __UTIL_FWD_HPP #ifndef __UTIL_FWD_HPP
#define __UTIL_FWD_HPP #define __UTIL_FWD_HPP
#define DEFINE_STRUCT(x) struct x; #define DECLARE_STRUCT(x) struct x
#define DEFINE_CLASS(x) class x; #define DECLARE_CLASS(x) class x
#endif #endif