updated boolModel, split lb302 for MV but there is a bug

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms-mv@669 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Paul Giblock
2008-01-24 05:50:29 +00:00
parent 157940921c
commit 0f23db9f9a
10 changed files with 274 additions and 183 deletions

View File

@@ -288,10 +288,20 @@ public:
// some model-primitives
generateModelPrimitive(bool,signed char);
//generateModelPrimitive(bool,signed char);
generateModelPrimitive(float,float);
generateModelPrimitive(int,int);
class boolModel : public automatableModel<bool, signed char> {
public:
boolModel( const bool _val = FALSE,
::model * _parent = NULL,
bool _default_constructed = FALSE ) :
automatableModel<bool, signed char>( _val, FALSE, TRUE, defaultRelStep(), _parent, _default_constructed )
{}
};
typedef automatableModelView<bool, signed char> boolModelView;
#endif