tahoma2d/toonz/sources/include/tstepparam.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

48 lines
865 B
C++

#ifndef TSTEPPARAM_H
#define TSTEPPARAM_H
//
// OBSOLETO?
//
/*
#include "tdoubleparam.h"
#include "texception.h"
//#include "tundo.h"
//#include "tparamundo.h"
#include <set>
#undef DVAPI
#undef DVVAR
#ifdef TPARAM_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
class TDoubleStepParam;
#ifdef WIN32
template class DVAPI TPersistDeclarationT<TDoubleStepParam>;
#endif
class DVAPI TDoubleStepParam : public TDoubleParam {
PERSIST_DECLARATION(TDoubleStepParam)
public:
TDoubleStepParam(double v=0.0);
TDoubleStepParam(const TDoubleParam &src);
~TDoubleStepParam();
TParam *clone() const {return new TDoubleStepParam(*this);}
double getValue(double frame, bool cropped=true) const ;
};
DEFINE_PARAM_SMARTPOINTER(TDoubleStepParam, double)
*/
#endif