/[svn]/linuxsampler/trunk/src/scriptvm/common.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/common.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2944 by schoenebeck, Fri Apr 22 15:37:45 2016 UTC revision 2945 by schoenebeck, Thu Jul 14 00:22:26 2016 UTC
# Line 25  namespace LinuxSampler { Line 25  namespace LinuxSampler {
25          return const_cast<VMIntArrayExpr*>( dynamic_cast<const VMIntArrayExpr*>(this) );          return const_cast<VMIntArrayExpr*>( dynamic_cast<const VMIntArrayExpr*>(this) );
26      }      }
27    
28        bool VMExpr::isModifyable() const {
29            const VMVariable* var = dynamic_cast<const VMVariable*>(this);
30            return (!var) ? false : var->isAssignable();
31        }
32    
33      void VMFunction::wrnMsg(const String& txt) {      void VMFunction::wrnMsg(const String& txt) {
34          std::cout << "[ScriptVM] " << txt << std::endl;          std::cout << "[ScriptVM] " << txt << std::endl;
35      }      }

Legend:
Removed from v.2944  
changed lines
  Added in v.2945

  ViewVC Help
Powered by ViewVC