Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/stroke/Module.h')
-rw-r--r--source/blender/freestyle/intern/stroke/Module.h71
1 files changed, 35 insertions, 36 deletions
diff --git a/source/blender/freestyle/intern/stroke/Module.h b/source/blender/freestyle/intern/stroke/Module.h
index ca0954df561..3e32361eb45 100644
--- a/source/blender/freestyle/intern/stroke/Module.h
+++ b/source/blender/freestyle/intern/stroke/Module.h
@@ -26,56 +26,55 @@
#include "StyleModule.h"
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
-class Module
-{
-public:
- static void setAlwaysRefresh(bool b = true)
- {
- getCurrentStyleModule()->setAlwaysRefresh(b);
- }
+class Module {
+ public:
+ static void setAlwaysRefresh(bool b = true)
+ {
+ getCurrentStyleModule()->setAlwaysRefresh(b);
+ }
- static void setCausal(bool b = true)
- {
- getCurrentStyleModule()->setCausal(b);
- }
+ static void setCausal(bool b = true)
+ {
+ getCurrentStyleModule()->setCausal(b);
+ }
- static void setDrawable(bool b = true)
- {
- getCurrentStyleModule()->setDrawable(b);
- }
+ static void setDrawable(bool b = true)
+ {
+ getCurrentStyleModule()->setDrawable(b);
+ }
- static bool getAlwaysRefresh()
- {
- return getCurrentStyleModule()->getAlwaysRefresh();
- }
+ static bool getAlwaysRefresh()
+ {
+ return getCurrentStyleModule()->getAlwaysRefresh();
+ }
- static bool getCausal()
- {
- return getCurrentStyleModule()->getCausal();
- }
+ static bool getCausal()
+ {
+ return getCurrentStyleModule()->getCausal();
+ }
- static bool getDrawable()
- {
- return getCurrentStyleModule()->getDrawable();
- }
+ static bool getDrawable()
+ {
+ return getCurrentStyleModule()->getDrawable();
+ }
-private:
- static StyleModule *getCurrentStyleModule()
- {
- Canvas *canvas = Canvas::getInstance();
- return canvas->getCurrentStyleModule();
- }
+ private:
+ static StyleModule *getCurrentStyleModule()
+ {
+ Canvas *canvas = Canvas::getInstance();
+ return canvas->getCurrentStyleModule();
+ }
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Module")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:Module")
#endif
};
} /* namespace Freestyle */
-#endif // __FREESTYLE_MODULE_H__
+#endif // __FREESTYLE_MODULE_H__