summaryrefslogtreecommitdiff
path: root/tools/InterfaceGenerator
diff options
context:
space:
mode:
authorKozoriz <kozorizandriy@gmail.com>2016-01-11 16:19:00 +0200
committerKozoriz <kozorizandriy@gmail.com>2016-01-11 16:19:00 +0200
commitfc19ff074e128427c18631df911f5724b364b24b (patch)
treee53e00d9730d760184604909ca0bfa3b6de17aa1 /tools/InterfaceGenerator
parent7875fe9def0e9c54ecc10d026db561ca19731fd5 (diff)
downloadsdl_core-fc19ff074e128427c18631df911f5724b364b24b.tar.gz
Correct all dependent from .hpp include directives
Corrected all include directives in files where was included .hpp files
Diffstat (limited to 'tools/InterfaceGenerator')
-rwxr-xr-xtools/InterfaceGenerator/generator/generators/SmartFactoryBase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/InterfaceGenerator/generator/generators/SmartFactoryBase.py b/tools/InterfaceGenerator/generator/generators/SmartFactoryBase.py
index 2b372021c2..d13ac29c9b 100755
--- a/tools/InterfaceGenerator/generator/generators/SmartFactoryBase.py
+++ b/tools/InterfaceGenerator/generator/generators/SmartFactoryBase.py
@@ -1223,7 +1223,7 @@ class CodeGenerator(object):
_hpp_schema_file_tempalte = string.Template(
u'''/**\n'''
- u''' * @file ${class_name}.hpp\n'''
+ u''' * @file ${class_name}.h\n'''
u''' * @brief Generated class ${class_name} header file.\n'''
u''' *\n'''
u''' * This class is a part of SmartObjects solution. It provides\n'''
@@ -1280,7 +1280,7 @@ class CodeGenerator(object):
u'''#ifndef $guard\n'''
u'''#define $guard\n'''
u'''\n'''
- u'''#include "formatters/CSmartFactory.hpp"\n'''
+ u'''#include "formatters/CSmartFactory.h"\n'''
u'''#include "smart_objects/smart_schema.h"\n'''
u'''#include "smart_objects/schema_item.h"\n'''
u'''#include "utils/shared_ptr.h"\n'''