Csound Csound-dev Csound-tekno Search About

[Cs-dev] Interfaces/CppSound.cpp

Date2005-10-28 18:16
FromSteven Yi
Subject[Cs-dev] Interfaces/CppSound.cpp
AttachmentsNone  

Date2005-10-28 19:47
Fromjpff@codemist.co.uk
SubjectRe: [Cs-dev] Interfaces/CppSound.cpp
That is why I added buildInterfaces=0
==John ffitch


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2005-10-28 21:05
FromSteven Yi
SubjectRe: [Cs-dev] Interfaces/CppSound.cpp
AttachmentsNone  

Date2005-10-29 10:28
FromIstvan Varga
SubjectRe: [Cs-dev] Interfaces/CppSound.cpp
Steven Yi wrote:

> Well, for this case, I would actually like to build the interfaces as
> I was going to try to build a Java frontend.  The CPP interface though
> killed the build though, but looks like Michael is going to revise so
> I'm leaving it for now.

Apparently, the only part that uses boost is this:

void CppSound::inputMessage(std::string istatement)
{
   std::vector pfields;
   typedef boost::char_separator charsep;
   boost::tokenizer tokens(istatement, charsep(" "));
   boost::tokenizer::iterator it = tokens.begin();
   std::string opcode = *it;
   for( ++it; it != tokens.end(); ++it) {
     pfields.push_back(atof(it->c_str()));
   }
   ScoreEvent(opcode[0], &pfields.front(), pfields.size());
}

Should not be hard to rewrite without the use of boost, and until
then if you do not need CppSound::inputMessage(), just comment out
its contents.


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net