ocarina/libsaria/model.cpp
Bryan Schumaker 136f12bc7c libsaria: Created a SourceModel class
The source model class is used to more tightly control how songs are
inserted into the UI.  I provide an insert() function that the library's
for_each() function can take advantage of.  This allows me to directly
insert songs into the UI rather than having to use a static function as
the "middle man"
2011-10-29 15:19:45 -04:00

10 lines
116 B
C++

#include <libsaria/model.h>
namespace libsaria
{
SourceModel::SourceModel(){}
SourceModel::~SourceModel(){}
};