00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00030
00031 #ifndef ARMAGETRON_VALUE_H
00032 #define ARMAGETRON_VALUE_H
00033
00034 #include "values/vCore.h"
00035 #include "values/vRegistry.h"
00036 #include "values/vCollection.h"
00037 #include "values/veComparison.h"
00038 #include "values/veLogic.h"
00039 #include "values/veMath.h"
00040 #include "values/vebLegacy.h"
00041 #include "values/vebMathExpr.h"
00042
00043 namespace tValue {
00044 using namespace vValue;
00045 using namespace Expr::Core;
00046 using namespace Expr::Collection;
00047 using namespace Expr::Bindings;
00048 using namespace Expr::Bindings::Legacy;
00049 using namespace Expr::Logic;
00050 using namespace Expr::Math;
00051 namespace Func {
00052 using namespace Expr::Math;
00053 using namespace Expr::Math::Trig;
00054 }
00055 using namespace Expr::Comparison;
00056 using namespace MiscWTF;
00057 using namespace Type;
00058 using namespace Registry;
00059 typedef Expr::Bindings::MathExpr Expr;
00060 }
00061
00062 #endif