Build fix.

This commit is contained in:
Gunnar Beutner 2013-10-20 15:20:54 +02:00
parent 599429ec93
commit f59a56e4fc
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ enum AOperator
/** /**
* @ingroup config * @ingroup config
*/ */
class AExpression : public Object class I2_CONFIG_API AExpression : public Object
{ {
public: public:
DECLARE_PTR_TYPEDEFS(AExpression); DECLARE_PTR_TYPEDEFS(AExpression);

View File

@ -32,7 +32,7 @@ AValue::AValue(const AExpression::Ptr& expr)
{ } { }
AValue::AValue(AValueType type, const Value& value) AValue::AValue(AValueType type, const Value& value)
: m_Type(type), m_Value(value), m_Expression(NULL) : m_Type(type), m_Value(value)
{ } { }
Value AValue::Evaluate(const Object::Ptr& thisRef) const Value AValue::Evaluate(const Object::Ptr& thisRef) const

View File

@ -43,7 +43,7 @@ class AExpression;
/** /**
* @ingroup config * @ingroup config
*/ */
class AValue class I2_CONFIG_API AValue
{ {
public: public:
AValue(void); AValue(void);