Initial stubs and basic Engine implementation

This commit is contained in:
Jack Andersen
2016-05-02 15:16:26 -10:00
parent 72ee790831
commit fa8d9038df
33 changed files with 947 additions and 1 deletions

14
lib/AudioGroupData.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "amuse/AudioGroupData.hpp"
namespace amuse
{
IntrusiveAudioGroupData::~IntrusiveAudioGroupData()
{
delete m_pool;
delete m_proj;
delete m_sdir;
delete m_samp;
}
}