Remove setName function from OpenSpaceModule and move naming into constructor

This commit is contained in:
Alexander Bock
2015-06-22 22:57:15 +02:00
parent 9ed5ee4469
commit 978b535a2f
8 changed files with 26 additions and 26 deletions
+3 -3
View File
@@ -33,9 +33,9 @@
namespace openspace {
VolumeModule::VolumeModule() {
setName("Volume");
}
VolumeModule::VolumeModule()
: OpenSpaceModule("Volume")
{}
bool VolumeModule::initialize() {
bool success = OpenSpaceModule::initialize();