LunaSysMgr
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AnimationSettings.cpp File Reference
#include "Common.h"
#include "AnimationSettings.h"
#include <QEasingCurve>
Include dependency graph for AnimationSettings.cpp:

Macros

#define SETUP_INTEGER(cat, var)
 

Macro Definition Documentation

#define SETUP_INTEGER (   cat,
  var 
)
Value:
{ \
int _v; \
GError* _error = 0; \
_v=g_key_file_get_integer(keyFile,cat,#var,&_error); \
if( !_error ) { var=_v; } \
else { g_error_free(_error); } \
\
m_values[#var] = &var; \
}