gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

pexcept.cxx (390B)


      1 /*
      2  *
      3  *  C++ Portable Types Library (PTypes)
      4  *  Version 2.1.1  Released 27-Jun-2007
      5  *
      6  *  Copyright (C) 2001-2007 Hovik Melikyan
      7  *
      8  *  http://www.melikyan.com/ptypes/
      9  *
     10  */
     11 
     12 #include "ptypes.h"
     13 
     14 
     15 namespace ptypes {
     16 
     17 
     18 exception::exception(const char* imsg)
     19     : message(imsg) 
     20 {
     21 }
     22 
     23 
     24 exception::exception(const string& imsg) 
     25     : message(imsg) 
     26 {
     27 }
     28 
     29 
     30 exception::~exception() 
     31 {
     32 }
     33 
     34 
     35 }